This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
chore(deps): update dependency @types/node to ^20.14.2 #33
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
on: pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Format | |
run: pnpm run format | |
- name: Lint | |
run: pnpm run lint | |
- name: Bundle Check | |
run: pnpm run bundle | |
- name: Compile | |
run: pnpm run compile | |
- name: Check diff | |
run: | | |
if [[ `git status --porcelain` ]]; then | |
exit 1 | |
fi |