Skip to content

Merge branch 'fix-send-api-key-in-headers' of https://github.com/snap… #1566

Merge branch 'fix-send-api-key-in-headers' of https://github.com/snap…

Merge branch 'fix-send-api-key-in-headers' of https://github.com/snap… #1566

Workflow file for this run

name: Tests CI
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14', '20']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, build and run tests
run: |
yarn install --frozen-lockfile
yarn build
yarn test:once --coverage
yarn lint
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}