Skip to content

test: move variables to global scope #548

test: move variables to global scope

test: move variables to global scope #548

Workflow file for this run

name: check branch
on: pull_request
jobs:
check-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Linting
run: yarn lint
- name: Unit Tests
run: yarn test:unit:coverage
- name: Test types
run: yarn test:types
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload coverage reports to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Check size
run: yarn test:size