Skip to content

Bump rollup-plugin-delete from 2.0.0 to 2.1.0 (#13845) #18279

Bump rollup-plugin-delete from 2.0.0 to 2.1.0 (#13845)

Bump rollup-plugin-delete from 2.0.0 to 2.1.0 (#13845) #18279

Workflow file for this run

name: JavaScript Unit Tests
on:
push:
# Only run if JS-related files changed.
paths:
- '**.js'
- '**.cjs'
- '**.ts'
- '**.tsx'
- '**/package.json'
- 'package-lock.json'
- 'packages/templates/src/raw/**'
- 'packages/text-sets/src/raw/**'
- 'patches/**'
- 'packages/fonts/src/fonts.json'
branches:
- main
- release/*
pull_request:
# Only run if JS-related files changed.
paths:
- '**.js'
- '**.cjs'
- '**.ts'
- '**.tsx'
- '**/package.json'
- 'package-lock.json'
- 'packages/templates/src/raw/**'
- 'packages/text-sets/src/raw/**'
- 'patches/**'
- 'packages/fonts/src/fonts.json'
permissions:
contents: read
# Cancels all previous workflow runs for pull requests that have not completed.
concurrency:
# The concurrency group contains the workflow name and the (target) branch name.
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
unit-js:
name: Unit Tests (${{ matrix.shard }})
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
# We want to split up the tests into 2 parts running in parallel.
shard: ['1/2', '2/2']
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7
with:
disable-sudo: true
disable-file-monitoring: true
egress-policy: audit
allowed-endpoints: >
cdn.ampproject.org:443
codecov.io:443
github.com:443
raw.githubusercontent.com:443
registry.npmjs.org:443
storage.googleapis.com:443
uploader.codecov.io:443
fonts.gstatic.com:443
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Setup Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version-file: '.nvmrc'
cache: npm
- name: Setup Jest cache
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
with:
path: .jest-cache
key: ${{ runner.os }}-${{ env.NVMRC }}-jest
# Rollup is needed for tests in `packages/migration/src` expecting `module.js`
- name: Install dependencies
run: |
npm ci
npx rollup --config packages/migration/rollup.config.js
env:
PUPPETEER_SKIP_DOWNLOAD: true
- name: Download AMP validator JS
id: amp_validator
run: |
cd $RUNNER_TEMP && curl -O -f -s -S https://cdn.ampproject.org/v0/validator_wasm.js
AMP_VALIDATOR_FILE="${RUNNER_TEMP}/validator_wasm.js"
echo "validator_file=$AMP_VALIDATOR_FILE" >> $GITHUB_ENV
- name: Run JavaScript unit tests
run: npm run test:js -- --runInBand --ci --cacheDirectory="$HOME/.jest-cache" --collectCoverage --shard=$SHARD
env:
SHARD: ${{ matrix.shard }}
AMP_VALIDATOR_FILE: ${{ env.validator_file }}
- name: Upload code coverage report
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238
with:
file: build/logs/lcov.info
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}