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 a38a367 commit e508dc7Copy full SHA for e508dc7
.github/workflows/frontend.yml
@@ -7,7 +7,6 @@ on:
7
branches: [ main ]
8
types: [opened, synchronize]
9
10
-
11
jobs:
12
build-frontend:
13
runs-on: ubuntu-latest
@@ -23,6 +22,12 @@ jobs:
23
22
cache: 'yarn'
24
cache-dependency-path: Sample-01/yarn.lock
25
+ - name: Verify Node.js version
26
+ run: node --version
27
+
28
+ - name: Clean Yarn cache
29
+ run: yarn cache clean
30
31
- name: Install dependencies
32
run: cd Sample-01 && yarn install
33
@@ -41,7 +46,6 @@ jobs:
41
46
run: CI=false yarn build
42
47
working-directory: Sample-01
43
48
44
45
49
- name: Upload build artifacts
50
uses: actions/upload-artifact@v2
51
with:
0 commit comments