Skip to content

Bump the build-and-dev group across 1 directory with 6 updates #248

Bump the build-and-dev group across 1 directory with 6 updates

Bump the build-and-dev group across 1 directory with 6 updates #248

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run TypeScript check
run: npm run ts:check
- name: Run tests
run: npm run test:unit -- --run
- name: Build
run: npm run build