-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (51 loc) · 1.46 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
name: Core
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
name: Test ubuntu-latest/Node 18
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test
uses: ./.github/actions/test
with:
node-version: 20
gh-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload coverage
if: ${{ runner.os != 'windows-latest' }}
continue-on-error: true
uses: coverallsapp/[email protected]
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@v3
with:
fetch-depth: 1000
- name: Init NPM
uses: ./.github/actions/init-npm
with:
node-version: 20
gh-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
name: Reconfig Node
with:
node-version: 20
registry-url: https://registry.npmjs.org
- name: Release
run: npm run release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}