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 eea98f4 commit e27fa66Copy full SHA for e27fa66
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+ - '**'
10
11
+jobs:
12
+ build_test:
13
+ name: Test
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 18
20
+ cache: yarn
21
22
+ - name: Install dependencies
23
+ run: yarn install --frozen-lockfile
24
25
+ - name: Tests
26
+ run: yarn test
0 commit comments