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 3fa4d7c commit 8ee2ebaCopy full SHA for 8ee2eba
.github/workflows/verify-build-publish.yml
@@ -0,0 +1,24 @@
1
+name: Verify/Build/Deploy
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
+jobs:
9
+ job:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
15
+ - name: Use Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version-file: ".nvmrc"
19
20
+ - name: Install
21
+ run: npm install
22
23
+ - name: test
24
+ run: npm run test
.nvmrc
@@ -0,0 +1 @@
+20
0 commit comments