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 8713531 commit fb46cdaCopy full SHA for fb46cda
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+ pull_request:
9
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
14
+ strategy:
15
+ matrix:
16
+ node-version: [18, 20]
17
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v4
21
22
+ - name: Use Node.js ${{ matrix.node-version }}
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: ${{ matrix.node-version }}
26
+ cache: yarn
27
28
+ - name: Install dependencies
29
+ run: yarn install --frozen-lockfile
30
31
+ - name: Run tests
32
+ run: yarn test --ci
0 commit comments