This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
chore(deps): update dependency @types/node to v18.17.15 #283
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 | |
paths-ignore: | |
- "dist/*" | |
- "dist_release/*" | |
pull_request: | |
paths-ignore: | |
- "dist/*" | |
- "dist_release/*" | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm install -g corepack && corepack enable npm | |
- uses: peaceiris/workflows/setup-node@v0.19.1 | |
with: | |
node-version-file: ".nvmrc" | |
- run: npm ci | |
- run: npm run fmt:check | |
- run: npm run xo | |
- run: npm run build | |
- run: git diff --exit-code | |
if: ${{ github.event_name == 'pull_request' }} |