Skip to content

Fix required step for merging #12

Fix required step for merging

Fix required step for merging #12

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup NodeJS 20
uses: actions/setup-node@v3
with:
node-version: '20'
cache: yarn
- name: Install dependencies
run: yarn
- name: Check formatting
run: npx prettier . --check
- name: Build
run: yarn build
- name: Check bundle size
run: yarn size
- name: Run tests
run: yarn test