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 33041b6 commit f630735Copy full SHA for f630735
.github/workflows/test.yml
@@ -0,0 +1,30 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ node-version: [20.x]
18
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - name: Setup Node.js ${{ matrix.node-version }}
22
+ uses: actions/setup-node@v3
23
+ with:
24
+ node-version: ${{ matrix.node-version }}
25
+ - name: Install Node.js modules
26
+ run: yarn install
27
+ - name: Lint
28
+ run: yarn lint
29
+ - name: Test
30
+ run: yarn test
0 commit comments