Skip to content

Bump the npm-development group across 1 directory with 8 updates #136

Bump the npm-development group across 1 directory with 8 updates

Bump the npm-development group across 1 directory with 8 updates #136

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Check Format
run: npm run format:check