chore(deps): update node.js to v22 - autoclosed #341
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup tools | |
uses: jdx/mise-action@f8dfbcc150159126838e44b882bf34bd98fd90f3 # v2 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Run formatter, linter and import sorting with Biome | |
run: bun run biome ci . | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup tools | |
uses: jdx/mise-action@f8dfbcc150159126838e44b882bf34bd98fd90f3 # v2 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Run formatter, linter and import sorting with Biome | |
run: bun run test:coverage | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup tools | |
uses: jdx/mise-action@f8dfbcc150159126838e44b882bf34bd98fd90f3 # v2 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Build | |
run: bun run build |