[News] Added new article to Layer5 Newsroom "The Top 12 CNCF Sandbox Projects of 2021" #2633
Workflow file for this run
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: lighthouseci | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- "*.md" | |
- "*.github/**" | |
jobs: | |
lighthouseci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 19 | |
- run: npm install && npm install -g @lhci/[email protected] | |
- run: CI=false npm run build | |
- run: lhci collect --config=.desktop-lighthouserc.js | |
- run: lhci assert --config=.desktop-lighthouserc.js | |
- run: lhci upload | |
- run: lhci autorun |