Skip to content

[Snyk] Security upgrade jest from 24.9.0 to 27.0.0 #483

[Snyk] Security upgrade jest from 24.9.0 to 27.0.0

[Snyk] Security upgrade jest from 24.9.0 to 27.0.0 #483

Workflow file for this run

name: package-test
on:
push:
branches: [master]
pull_request: # run on all PRs, not just PRs to a particular branch
jobs:
package-test:
runs-on: ubuntu-latest
name: Package Test
steps:
- name: git clone
uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: yarn install --frozen-lockfile --network-timeout 1000000
- run: yarn build-report
- run: sudo apt-get install xvfb
- run: xvfb-run --auto-servernum bash $GITHUB_WORKSPACE/lighthouse-core/scripts/release/package-test.sh
# Fail if any changes were written to source files.
- run: git diff --exit-code