Skip to content

chore(deps): update dependency prettier to v3.9.6 #164

chore(deps): update dependency prettier to v3.9.6

chore(deps): update dependency prettier to v3.9.6 #164

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Check formatting
run: yarn format:check
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build
- name: Verify dist/ is up to date
run: |
if [ -n "$(git diff --name-only '*/dist/')" ]; then
echo "::error::dist/ is out of date. Run 'yarn build' and commit the changes."
git diff --stat '*/dist/'
exit 1
fi