-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
202a734
commit b8f6323
Showing
2 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
name: 'deploy static site' | ||
name: "DPC Static Site CI Workflow" | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- .github/worflows/deploy.yml | ||
|
||
jobs: | ||
first_thing: | ||
build: | ||
name: "Build and Test" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo 'works' | ||
|
||
- name: "Checkout code" | ||
uses: actions/checkout@v2 | ||
- name: "Build and Test" | ||
run: | | ||
mkdir -p _site | ||
mkdir -p .jekyll-cache | ||
./scripts/build_and_test.sh | ||
- name: "Check for broken links" | ||
uses: lycheeverse/lychee-action@v1 | ||
with: | ||
fail: true | ||
jobSummary: true | ||
args: --no-progress --accept '200..=299, 401, 403, 405' . |
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