Skip to content

chore: bump package version #220

chore: bump package version

chore: bump package version #220

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
with:
path: node_modules
key: npm-cache
restore-keys: npm-cache
- run: npm install
- run: npm run build
- run: npm run test
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
- uses: actions/cache@v3
with:
path: node_modules
key: npm-cache
restore-keys: npm-cache
- run: npm install
- run: npm run build
- run: npm run test-cov
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}