Skip to content

chore(deps): update npm packages #543

chore(deps): update npm packages

chore(deps): update npm packages #543

Workflow file for this run

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: Textlint
run: pnpm run textlint:check
- 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