We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07fb0d1 commit 3861f0dCopy full SHA for 3861f0d
.github/workflows/deploy.yml
@@ -9,10 +9,19 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- name: Checkout source code.
12
- uses: actions/checkout@main
+ uses: actions/checkout@v2
13
+
14
+ - name: Cache node modules
15
+ uses: actions/cache@v3
16
+ with:
17
+ path: node_modules
18
+ key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
19
+ restore-keys: |
20
+ ${{ runner.OS }}-build-
21
+ ${{ runner.OS }}-
22
23
- name: Install Dependencies
- run: npm install
24
+ run: npm ci
25
26
- name: Build
27
run: npm run build
src/components/atoms/SubTitle.tsx
@@ -1,3 +1,4 @@
1
+import React from "react";
2
import { DescriptionText, SubtitleText, SubtitleWrapper } from "../../styles/subtitle";
3
4
type SubtitleProps = {
0 commit comments