-
Notifications
You must be signed in to change notification settings - Fork 5
48 lines (47 loc) · 1.27 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
name: GitHub CI
on:
push:
branches: [ main, 'develop' ]
pull_request:
branches: [ 'develop' ]
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x, 'lts/*' ]
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install --ignore-scripts
- name: Run Unit Tests
run: npm run test:ci
- name: Release Drafter
uses: release-drafter/release-drafter@v5.9.0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
continue-on-error: true
Release:
runs-on: ubuntu-latest
needs: [ test ]
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install Dependencies
run: npm install --ignore-scripts
- name: Semantic Release
run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}