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 734f3f5 commit 508003dCopy full SHA for 508003d
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,19 @@
1
+name: CI
2
+
3
+on: push
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - name: Use Node.js 16.x
11
+ uses: actions/setup-node@v3
12
+ with:
13
+ node-version: 16.x
14
+ cache: 'npm'
15
+ - run: npm ci
16
+ - run: npm run all
17
+ - name: Release
18
+ if: github.ref_name == 'master'
19
+ run: npx semantic-release
0 commit comments