We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd721c5 + e79d949 commit 1c97f0cCopy full SHA for 1c97f0c
.github/workflows/superdiff.yml
@@ -12,24 +12,18 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [16.x, 18.x]
+ node-version: [18.x]
16
17
steps:
18
- uses: actions/checkout@v3
19
- name: Use Node.js ${{ matrix.node-version }}
20
uses: actions/setup-node@v3
21
with:
22
node-version: ${{ matrix.node-version }}
23
- cache: "yarn"
+ cache: "npm"
24
- name: Install dependencies
25
- uses: borales/actions-yarn@v4
26
- with:
27
- cmd: install
+ run: npm install
28
- name: Build app
29
30
31
- cmd: build
+ run: npm run build
32
- name: Test app
33
34
35
- cmd: test
+ run: npm test
0 commit comments