Skip to content

v2.0.0-alpha.0 (#124) #161

v2.0.0-alpha.0 (#124)

v2.0.0-alpha.0 (#124) #161

Workflow file for this run

name: Test Coverage
on:
push:
branches: [master]
tags: ['!*'] # don't execute on tags
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn test
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
directory: ./coverage
fail_ci_if_error: true
name: zedux-master
token: ${{ secrets.CODECOV_TOKEN }}