Skip to content

Merge pull request #468 from opzkit/dependabot/npm_and_yarn/types/amq… #1021

Merge pull request #468 from opzkit/dependabot/npm_and_yarn/types/amq…

Merge pull request #468 from opzkit/dependabot/npm_and_yarn/types/amq… #1021

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x, 16.x, 18.x, 20.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn test --ci --coverage
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true