Skip to content

Lock file maintenance #217

Lock file maintenance

Lock file maintenance #217

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Npm install
run: npm install
- name: Prettier
run: npm run prettier:check
- name: Lint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Build
run: npm run build
- name: Build demo
run: npm run build-demo