Skip to content

Itches and scratches #259

Itches and scratches

Itches and scratches #259

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_ENV: production
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: npm
- run: NODE_ENV=development npm install
- run: npm run lint:check
- run: npm run build