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 67942c9 commit 85b5591Copy full SHA for 85b5591
.github/workflows/node.js.yml
@@ -13,10 +13,9 @@ jobs:
13
build:
14
15
runs-on: ubuntu-latest
16
-
17
strategy:
18
matrix:
19
- node-version: [14.x, 16.x, 18.x]
+ node-version: [18.x]
20
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21
22
steps:
@@ -25,7 +24,14 @@ jobs:
25
24
uses: actions/setup-node@v3
26
with:
27
node-version: ${{ matrix.node-version }}
+ cache-dependency-path: react-app/package-lock.json
28
cache: 'npm'
29
- - run: npm ci
30
- - run: npm run build --if-present
31
- - run: npm test
+ - name: CI
+ working-directory: react-app
+ run: npm ci
32
+ - name: build
33
34
+ run: npm run build --if-present
35
+ - name: test
36
37
+ run: npm test
0 commit comments