Fix wrong path #57
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: Validate | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- '.github/dependabot.yml' | |
- '.github/workflows/dprint.yml' | |
- '.github/workflows/dependency-review.yml' | |
- '.github/workflows/merge-bot-pr.yml' | |
- '.editorconfig' | |
- 'dprint.json' | |
- 'README.md' | |
- '.vscode/**' | |
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: | |
validate: # make sure the action works on a clean machine without building | |
# https://github.com/actions/deploy-pages/issues/9 | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./ | |
id: deployment |