This repository was archived by the owner on May 19, 2023. It is now read-only.
File tree 3 files changed +10
-12
lines changed
3 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 1
- name : test-runner
1
+ name : ci
2
2
3
3
on :
4
4
push :
Original file line number Diff line number Diff line change 1
- name : " Code Scanning - Action "
1
+ name : codeql
2
2
3
3
on :
4
4
push :
Original file line number Diff line number Diff line change 1
- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
- # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3
-
4
- name : Node.js Package
1
+ # Publishes latest unstable build to GPR
2
+ name : publish
5
3
6
4
on :
7
5
push :
15
13
- uses : actions/setup-node@v2
16
14
with :
17
15
node-version : 12
18
- - run : npm ci
19
- - run : npm test
20
-
16
+ - run : yarn install --frozen-lockfile
17
+ - run : yarn test
18
+
21
19
publish-gpr :
22
20
needs : build
23
21
runs-on : ubuntu-latest
30
28
with :
31
29
node-version : 12
32
30
registry-url : https://npm.pkg.github.com/
33
- - run : npm ci
34
- - run : npm publish
31
+ - run : yarn install --frozen-lockfile
32
+ - run : yarn publish
35
33
env :
36
- NODE_AUTH_TOKEN : ${{secrets.GITHUB_TOKEN}}
34
+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments