Skip to content

Release fixes

Release fixes #1

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
jobs:
check-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Linting
run: yarn lint
- name: Test
run: yarn test:coverage