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 8607d46 commit 00c836fCopy full SHA for 00c836f
.github/workflows/tests.yml renamed to .github/workflows/test_go.yml
@@ -1,4 +1,4 @@
1
-name: Test
+name: Test Go
2
3
on:
4
push:
@@ -7,7 +7,6 @@ on:
7
branches: [ main ]
8
9
jobs:
10
-
11
build:
12
runs-on: ubuntu-latest
13
steps:
.github/workflows/test_js.yml
@@ -0,0 +1,31 @@
+name: Test JS
+
+on:
+ push:
5
+ branches: [ main ]
6
+ pull_request:
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ defaults:
+ run:
14
+ working-directory: web
15
+ strategy:
16
+ matrix:
17
+ node-version: [16.x]
18
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - name: Use Node.js ${{ matrix.node-version }}
22
+ uses: actions/setup-node@v2
23
+ with:
24
+ node-version: ${{ matrix.node-version }}
25
+ cache: 'npm'
26
27
+ - name: Install dependencies
28
+ run: yarn install
29
30
+ - name: Run tests
31
+ run: yarn test
0 commit comments