Skip to content

1.3.0

1.3.0 #24

Workflow file for this run

name: Node.js CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.Js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Build the app
run: npm run build-all
- name: Run the linter
run: npm run lint