-
Notifications
You must be signed in to change notification settings - Fork 32
86 lines (69 loc) · 2.27 KB
/
main.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: main
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [^16, ^18]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup MongoDB
run: bash ./.github/mongo_setup.sh
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependency
run: yarn install --ignore-engines
- name: Build library
run: yarn run build
- name: Run unit tests
run: yarn run tests
coverall:
needs: [test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [^16, ^18]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup MongoDB
run: bash ./.github/mongo_setup.sh
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependency
run: yarn install --ignore-engines
- name: Build library
run: yarn run build
- name: Run code coverage
run: yarn run coverage
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
release:
needs: [test,coverall]
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependency
run: yarn install --ignore-engines
- name: Build library
run: yarn run build
- name: Release
if: github.event_name == 'push' && github.repository == 'node-casbin/mongoose-adapter'
run: npx -p semantic-release -p @semantic-release/git -p @semantic-release/changelog -p @semantic-release/commit-analyzer -p @semantic-release/release-notes-generator -p @semantic-release/release-notes-generator -p @semantic-release/changelog -p @semantic-release/git -p @semantic-release/github semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}