Skip to content

Cleaned up state, seems to be working well. #19

Cleaned up state, seems to be working well.

Cleaned up state, seems to be working well. #19

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v3
name: Checkout repository
- name: setup node ${{matrix.node-version}}
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
- name: Install yarn
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test