Challenges #961
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: CI | |
on: push | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/checkout@v2 | |
- name: 🎯 Set up Node.js using nvm | |
uses: actions/setup-node@v2 | |
with: | |
node-version-file: '.nvmrc' | |
- name: 🎁 Install dependencies | |
run: npm ci | |
- name: 👷🏽♂️ Build the site | |
run: npm run build --if-present | |
- name: 💾 Store the build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dist | |
path: dist | |
lighthouseci: | |
name: Lighthouse | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: 🚚 Get the build | |
uses: actions/download-artifact@v2 | |
with: | |
name: dist | |
path: dist | |
- name: 🎯 Set up Node.js using nvm | |
uses: actions/setup-node@v2 | |
with: | |
node-version-file: '.nvmrc' | |
- name: 🎁 Install Lighthouse | |
run: npm install -g @lhci/cli | |
- name: 🔎 Run Lighthouse | |
run: lhci autorun | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} | |
lintfix: | |
name: Lint, Type check and auto-fix | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: 🎯 Set up Node.js using nvm | |
uses: actions/setup-node@v2 | |
with: | |
node-version-file: '.nvmrc' | |
- name: 🎁 Install dependencies | |
run: npm ci | |
- name: 🔦 Typecheck | |
run: npm run typecheck | |
- name: 🔦 Lint | |
if: always() | |
run: npm run lint | |
- name: 🍾 Commit & Push changes | |
if: always() | |
uses: actions-js/push@master | |
with: | |
message: 'chore: Auto-fix some lint errors' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |