Skip to content

feat(plausible): script plausible analytics #190

feat(plausible): script plausible analytics

feat(plausible): script plausible analytics #190

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: npm ci
- name: Check format (prettier)
run: npm run format-check
- name: Lint (eslint)
run: npm run lint-check
- name: Typescript Compile
run: npm run tsc
- name: Compile
run: npm run build
- name: Lighthouse
run: npm run lighthouse
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}