Skip to content

Bump @babel/traverse from 7.20.13 to 7.23.2 #826

Bump @babel/traverse from 7.20.13 to 7.23.2

Bump @babel/traverse from 7.20.13 to 7.23.2 #826

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: 🎯 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 dependencies
run: npm ci
- name: πŸ‘·πŸ½β€β™‚οΈ Build the site
run: npm 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 dependencies
run: npm ci
- name: πŸ”¦ Run ${{ matrix.command }}
run: npm 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 }}