Skip to content

Merge pull request #450 from jaap3/dependabot/npm_and_yarn/eslint-plu… #293

Merge pull request #450 from jaap3/dependabot/npm_and_yarn/eslint-plu…

Merge pull request #450 from jaap3/dependabot/npm_and_yarn/eslint-plu… #293

Workflow file for this run

name: Deploy to Pages
on:
# Runs on pushes targeting the default branch
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
lint:
uses: ./.github/workflows/lint.yml
build:
uses: ./.github/workflows/build.yml
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs:
- lint
- build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4