-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (57 loc) · 1.65 KB
/
core.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Core
on:
push:
branches: [master]
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
name: Test
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: NPM Init
uses: ./.github/actions/init-npm
- name: Test
run: npm test
- name: Release dry run
run: npm run release:dry
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Upload coverage
if: ${{ runner.os != 'windows-latest' }}
continue-on-error: true
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: node-${{ inputs.node-version }}-on-${{ runner.os }}-${{ github.event_name }}
path-to-lcov: ./coverage/ngx-sails/lcov.info
release:
name: Release
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
needs:
- test
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1000
persist-credentials: false
- name: Init NPM
uses: ./.github/actions/init-npm
- uses: actions/setup-node@v3
name: Reconfig Node
with:
registry-url: https://registry.npmjs.org
- name: Release
run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}