Skip to content

Importable build functions #35

Importable build functions

Importable build functions #35

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20'
- run: corepack enable
- run: yarn config set enableImmutableInstalls false
- run: yarn
- run: yarn lint
- run: yarn build
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}