-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (30 loc) · 1000 Bytes
/
test-and-release.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
# This workflow will do a clean install of node dependencies, build the source
# code and run tests across different versions of node For more information
# see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test and Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: "16.x"
- name: Keep npm cache around to speed up installs
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- name: Install packages
run: npm ci
- name: Build TypeScript
run: npx tsc
- name: Run tests
run: npm run test
- name: Semantic release
continue-on-error: true
run: npx semantic-release