Bump @typescript-eslint/parser from 6.21.0 to 7.13.0 (#1478) #71
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
name: Deploy to GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
env: | |
FORCE_COLOR: 2 | |
NODE: 16 | |
permissions: | |
contents: read | |
jobs: | |
pages: | |
permissions: | |
contents: write # for peaceiris/actions-gh-pages to push pages branch | |
name: Deploy to GitHub Pages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- uses: actions/setup-node@d86ebcd40b3cb50b156bfa44dd277faf38282d12 | |
with: | |
node-version: "${{ env.NODE }}" | |
cache: "npm" | |
- run: npm ci | |
- name: Build docs | |
run: npm run build:docs | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs |