-
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
145dfc0
commit c06e008
Showing
1 changed file
with
13 additions
and
12 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,15 +1,16 @@ | ||
name: CI | ||
on: [push] | ||
name: Audit live site | ||
on: push | ||
|
||
jobs: | ||
lighthouseci: | ||
audit: | ||
runs-on: ubuntu-latest | ||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- name: Lighthouse Audit | ||
uses: jakejarvis/lighthouse-action@master | ||
with: | ||
url: 'https://womeninsoftware.jp/' | ||
- uses: actions/upload-artifact@master | ||
with: | ||
name: report | ||
path: './report' | ||
- name: Audit live URL | ||
uses: jakejarvis/lighthouse-action@master | ||
with: | ||
url: 'https://womeninsoftware.jp/' | ||
- name: Upload results as an artifact | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: report | ||
path: './report' |