Skip to content

Nouveau design

Nouveau design #133

Workflow file for this run

name: Checks
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
cache-dependency-path: frontend/yarn.lock
- name: Make init
run: make init
- name: Make init
run: make init
- name: Make lint
run: make lint
- name: Make build
run: make build