Skip to content

Update test.yml

Update test.yml #249

Workflow file for this run

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 libasound2-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