Skip to content

Merge pull request #499 from ant-media/lastpeony-patch-1 #758

Merge pull request #499 from ant-media/lastpeony-patch-1

Merge pull request #499 from ant-media/lastpeony-patch-1 #758

Workflow file for this run

name: Run JS Tests & Check Coverage
on: push
jobs:
run-js-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install --include=dev
- run: npm run compile
- run: npm run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}