-
Notifications
You must be signed in to change notification settings - Fork 3
executable file
·46 lines (36 loc) · 994 Bytes
/
test.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
name: Test
on: [push, pull_request]
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Node.js and NPM
uses: actions/setup-node@v1
with:
node-version: 16
- name: install Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get install -y python3-distutils-extra
sudo apt-get install -y libasound2-dev
sudo apt-get install -y libjack-jackd2-dev
- name: install distutils on osx
if: runner.os == 'macOS'
run: |
pip install setuptools
- name: run post-clone
run: |
npm run post-clone
- name: npm test
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
npm run package
npm run lint
npm exec tsc
npm test