Skip to content

Bump the npm_and_yarn group with 13 updates #13

Bump the npm_and_yarn group with 13 updates

Bump the npm_and_yarn group with 13 updates #13

Workflow file for this run

name: Continuous Integration
on:
pull_request:
concurrency:
group: 'ci'
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
check:
name: Check
runs-on: ubuntu-latest
strategy:
matrix:
check: ['type:check', 'format:check']
node: ['18', '20']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run Check
run: npm run ${{ matrix.check }}
- name: Run build
run: npm run build