Skip to content

Update to recent code from YORICK. #8

Update to recent code from YORICK.

Update to recent code from YORICK. #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
node-version: "20"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.node-version }}
- name: Install modules
run: yarn install --immutable
- name: Run ESLint & Prettier
run: yarn run lint
testBuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.node-version }}
- name: Install modules
run: yarn install --immutable
- name: Build
run: yarn run build