Skip to content

Update all dependencies #125

Update all dependencies

Update all dependencies #125

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches:
- master
pull_request:
env:
CLICOLOR: 1
jobs:
spelling:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v5
- name: Spell Check Repo
uses: crate-ci/typos@v1.35.7
js:
name: Check formatting and linting and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 24
- name: Install dependencies
run: npm clean-install
- name: Check formatting with Prettier
run: npm run prettier:check
- name: Check linting with ESLint
run: npm run lint
- name: Test
run: npm test