Skip to content

chore: Clean up .gitignore and disable automatic updates #13

chore: Clean up .gitignore and disable automatic updates

chore: Clean up .gitignore and disable automatic updates #13

Workflow file for this run

name: Node
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
node-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
- name: Check
run: pnpm run check
- name: Format
run: pnpm run format
- name: Lint
run: pnpm run lint
node-check:
if: always()
needs:
- node-lint
runs-on: ubuntu-latest
steps:
- name: Alls Green
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}