mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
20 lines
579 B
YAML
20 lines
579 B
YAML
name: Lighthouse
|
|
on: push
|
|
jobs:
|
|
lighthouse:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Audit URLs using Lighthouse
|
|
uses: treosh/lighthouse-ci-action@v2
|
|
with:
|
|
urls: |
|
|
https://ant.design
|
|
https://ant.design/docs/react/introduce-cn
|
|
https://ant.design/components/button-cn
|
|
- name: Save results
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: lighthouse-results
|
|
path: '.lighthouseci' # This will save the Lighthouse results as .json files
|