Skip to content

Remove testing artifact in Dockerfile #144

Remove testing artifact in Dockerfile

Remove testing artifact in Dockerfile #144

Workflow file for this run

# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: CI
on: [push]
jobs:
check_dawn:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- job_name: 'staff store, custom app login'
store: shimmering-islands.myshopify.com
app_id: ''
app_password: ''
access_token: SHOP_ACCESS_TOKEN
password: ''
- job_name: 'staff store, private app login'
store: shimmering-islands.myshopify.com
app_id: SHOP_APP_ID
app_password: SHOP_APP_PASSWORD
access_token: ''
password: ''
- job_name: 'dev store, custom app login'
store: cpclermont-dev-store.myshopify.com
app_id: ''
app_password: DEV_APP_PASSWORD
access_token: DEV_ACCESS_TOKEN
password: DEV_PASSWORD
- job_name: 'dev store, private app login'
store: cpclermont-dev-store.myshopify.com
app_id: DEV_APP_ID
app_password: DEV_APP_PASSWORD
access_token: ''
password: DEV_PASSWORD
name: ${{ matrix.job_name }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: "shopify/dawn"
path: "./dawn"
- name: Lighthouse CI action
uses: ./
id: lighthouse-ci-action
with:
app_id: ${{ secrets[matrix.app_id] }}
app_password: ${{ secrets[matrix.app_password] }}
access_token: ${{ secrets[matrix.access_token] }}
store: ${{ matrix.store }}
password: ${{ secrets[matrix.password] }}
theme_root: "./dawn"
lhci_min_score_performance: 0.1
lhci_min_score_accessibility: 0.1