Enable 2022 live (#663) #850
This file contains hidden or 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: π― Read .nvmrc | |
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" | |
id: nvm | |
- name: π― Use Node.js (.nvmrc) | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
- name: π Install Yarn | |
run: npm install -g yarn | |
- name: π Configure cache 1 | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn config get cacheFolder)" | |
- name: π Configure cache 2 | |
uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: π Install dependencies | |
run: yarn install --immutable | |
- name: π·π½ββοΈ Build the site | |
run: yarn run dist | |
- 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: π― Read .nvmrc | |
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" | |
id: nvm | |
- name: π― Use Node.js (.nvmrc) | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '${{ steps.nvm.outputs.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 and fix | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
command: ['lint:eslint', 'lint:stylelint', 'lint:prettier'] | |
steps: | |
- name: π Get latest code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: π― Read .nvmrc | |
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" | |
id: nvm | |
- name: π― Use Node.js (.nvmrc) | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
- name: π Install Yarn | |
run: npm install -g yarn | |
- name: π Configure cache 1 | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn config get cacheFolder)" | |
- name: π Configure cache 2 | |
uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: π Install dependencies | |
run: yarn install --immutable | |
- name: π¦ Run ${{ matrix.command }} | |
run: yarn run ${{ matrix.command }} | |
- name: πΎ Commit & Push changes | |
uses: actions-js/push@master | |
with: | |
message: 'chore: Auto-fix some lint errors' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |