Skip to content

ci: configure github actions #1

ci: configure github actions

ci: configure github actions #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.tool-versions'
cache: 'yarn'
- run: yarn lint
- run: yarn test
- run: yarn clean
- run: yarn build
- run: yarn bundle