Skip to content

Bump manifest to 1.4.2 #595

Bump manifest to 1.4.2

Bump manifest to 1.4.2 #595

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Use Node.js 20.19.0
uses: actions/setup-node@v5
with:
node-version: 20.19.0
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build