chore(deps): update npm packages #1368
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: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
paths-ignore: | |
- README.md | |
push: | |
branches: | |
- main | |
- "renovate/**" | |
paths-ignore: | |
- README.md | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: ${{ github.ref_name != 'main' }} | |
jobs: | |
check-typos: | |
name: Check typos | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiki-e/checkout-action@v1 | |
- uses: crate-ci/typos@master | |
with: | |
files: . | |
lint: | |
name: Lint | |
needs: check-typos | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiki-e/checkout-action@v1 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- name: Oxlint | |
run: pnpm run lint --format github | |
build-and-deploy: | |
name: Build and Deploy | |
needs: lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: taiki-e/checkout-action@v1 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run build | |
env: | |
REDIRECT: true | |
- uses: peaceiris/actions-gh-pages@v4 | |
if: github.ref_name == 'main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build |