Skip to content

Bump the dev-dependencies group across 1 directory with 11 updates (#… #1053

Bump the dev-dependencies group across 1 directory with 11 updates (#…

Bump the dev-dependencies group across 1 directory with 11 updates (#… #1053

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch: {}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm install
name: Install dependencies
- run: pnpm check-version-mismatch
name: Check dependencies are consistent
- run: pnpm run build
name: Build
- run: pnpm run test
name: Test
- run: |
git status --porcelain
git diff --no-ext-diff --quiet --exit-code
name: Check not out of date generated files
format:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm install
name: Install dependencies
- run: pnpm run build
name: Build
- run: pnpm run format:check
name: Check formatting
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm install
name: Install dependencies
- run: pnpm run lint
name: Lint
- run: pnpm run lint:sp
name: Syncpack