Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Update README.md

Update README.md #19

Workflow file for this run

name: Linux browsers
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Install sitespeed.io
run: |
cd ..
git clone https://github.com/sitespeedio/sitespeed.io.git
cd sitespeed.io
npm install -g
cd ../plugin-webpagetest
npm install
- name: Lint
run: npm run lint
- name: Run tests on WebPageTest
run: sitespeed.io --plugins.add . --plugins.remove browsertime https://www.sitespeed.io/ --webpagetest.key ${{ secrets.WPT_KEY }}