Skip to content

Bump the ts-eslint group with 2 updates (#326) #326

Bump the ts-eslint group with 2 updates (#326)

Bump the ts-eslint group with 2 updates (#326) #326

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [main]
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build-and-deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "20"
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install
- run: yarn build
- uses: actions/upload-pages-artifact@v3
with:
path: docs
- id: deployment
uses: actions/deploy-pages@v4