generated from kachick/action-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (35 loc) · 941 Bytes
/
validate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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