Skip to content

Update ignore

Update ignore #23

Workflow file for this run

name: Check Pull Request
on:
pull_request:
branches:
- main
jobs:
check:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'
- run: pnpm i
- run: |
pnpm build
pnpm lint
pnpm test