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 68c1f49 commit 1bd8451Copy full SHA for 1bd8451
.github/workflows/nodejs-ci.yml
@@ -0,0 +1,28 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "main"
7
+ paths-ignore:
8
+ - "**.md"
9
+ pull_request_target:
10
11
12
13
14
15
+env:
16
+ HUSKY: 0
17
18
+jobs:
19
+ build:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - uses: actions/setup-node@v3
24
+ with:
25
+ node-version: 16
26
+ cache: "yarn"
27
+ - name: Install modules
28
+ run: yarn install --frozen-lockfile
0 commit comments