-
Notifications
You must be signed in to change notification settings - Fork 113
47 lines (43 loc) · 1.08 KB
/
ci.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
name: Chai HTTP
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Test on node ${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version:
- 16 # to be removed after 2023-09
- 18
- x.x.x # safety net; don't remove
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- run: npm ci
- run: npm test
- uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
publish-npm:
if: ${{ github.event_name == 'push' }}
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run release
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}} # ff9b......76c4
GITHUB_TOKEN: ${{secrets.GH_RELEASE_TOKEN}}