We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61eb3f0 commit 7199394Copy full SHA for 7199394
.github/workflows/ci.yml
@@ -0,0 +1,35 @@
1
+name: CI
2
+
3
+concurrency: ${{ github.workflow }}
4
5
+on:
6
+ pull_request:
7
+ push:
8
+ branches:
9
+ - main
10
+ workflow_dispatch:
11
12
+jobs:
13
+ test:
14
+ name: Test the build
15
+ runs-on: ubuntu-22.04
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - name: Setup Go
21
+ uses: actions/setup-go@v5
22
+ with:
23
+ go-version-file: go.mod
24
25
+ - name: Setup Node
26
+ uses: actions/setup-node@v3
27
28
+ node-version-file: .node-version
29
+ cache: yarn
30
31
+ - name: Install JS dependencies
32
+ run: yarn
33
34
+ - name: Test
35
+ run: yarn test
0 commit comments