Skip to content

Copy and paste fail. We started at 1.0.1 #3

Copy and paste fail. We started at 1.0.1

Copy and paste fail. We started at 1.0.1 #3

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint Check
run: npm run lint
- name: Tests
run: npm run test
- name: Build
run: npm run build