Skip to content

we don't support lighthouse in here #1020

we don't support lighthouse in here

we don't support lighthouse in here #1020

Workflow file for this run

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@v3
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@v3
with:
name: dist
path: dist
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@v3
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 }}