-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (39 loc) · 1.03 KB
/
test.yml
File metadata and controls
52 lines (39 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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 }}