chore: temporary skip the snapshot check #281
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 | |
env: | |
# 7 GiB by default on GitHub, setting to 6 GiB | |
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources | |
NODE_OPTIONS: --max-old-space-size=6144 | |
# Vitest auto retry on flaky segfault | |
VITEST_SEGFAULT_RETRY: 3 | |
# Remove default permissions of GITHUB_TOKEN for security | |
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs | |
permissions: {} | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
name: 'Build&Test: node-lts, ubuntu-latest' | |
steps: | |
- name: ⤵️ Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@57d9664f8e2aa45f26bcb59095f99aa47ae8e90d # v35.4.4 | |
with: | |
files: | | |
docs/** | |
.github/** | |
.vscode/** | |
!.github/workflows/ci.yml | |
**.md | |
- name: 🎉 Install pnpm | |
if: steps.changed-files.outputs.only_changed != 'true' | |
uses: pnpm/action-setup@v4 | |
- name: 🎉 Set node version to lts | |
if: steps.changed-files.outputs.only_changed != 'true' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
registry-url: https://registry.npmjs.org/ | |
cache: pnpm | |
- name: 🚧 Install deps | |
if: steps.changed-files.outputs.only_changed != 'true' | |
run: pnpm install | |
- name: 📦 Build | |
if: steps.changed-files.outputs.only_changed != 'true' | |
run: pnpm run build | |
- name: 🔀 Test unit | |
if: steps.changed-files.outputs.only_changed != 'true' | |
run: pnpm run test | |
lint: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
name: 'Lint: node-lts, ubuntu-latest' | |
steps: | |
- name: ⤵️ Checkout | |
uses: actions/checkout@v4 | |
- name: 🎉 Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: 🎉 Set node version to lts | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
registry-url: https://registry.npmjs.org/ | |
cache: pnpm | |
- name: 🚧 Install deps | |
run: pnpm install | |
- name: 📦 Build | |
run: pnpm run build | |
- name: 🔀 Lint | |
run: pnpm run lint | |
# From https://github.com/rhysd/actionlint/blob/main/docs/usage.md#use-actionlint-on-github-actions | |
- name: 🔀 Check workflow files | |
run: | | |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
./actionlint -color -shellcheck="" |