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 9d15319 commit 12e73baCopy full SHA for 12e73ba
.github/workflows/superdiff.yml
@@ -0,0 +1,35 @@
1
+name: Superdiff CI
2
+
3
+on:
4
+ push:
5
+ branches: ["master"]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ strategy:
14
+ matrix:
15
+ node-version: [16.x, 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"
24
+ - name: Install dependencies
25
+ uses: borales/actions-yarn@v4
26
27
+ cmd: install
28
+ - name: Build app
29
30
31
+ cmd: build
32
+ - name: Test app
33
34
35
+ cmd: test
0 commit comments