Skip to content

Save progress

Save progress #39

Workflow file for this run

name: test
on:
push:
pull_request:
paths:
- public
- js
jobs:
unit_tests:
name: Test Runner
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Download Deno
uses: denolib/setup-deno@master
with:
deno-version: v1.38.3
- name: Check format
run: deno fmt --check
- name: Run tests
run: deno test --allow-read --allow-write
lighthouse:
name: lighthouse
runs-on: ubuntu-latest
env:
URL: ${{ github.event.deployment_status.environment_url }}
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install Lighthouse CI
run: npm install -g @lhci/cli@0.9.x
- name: Run Lighthouse
run: lhci autorun --collect.staticDistDir="public" --upload.target="temporary-public-storage"
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}