Skip to content

build(chrome): update the pinned browser version to 131.0.6770.0 (#2670) #10703

build(chrome): update the pinned browser version to 131.0.6770.0 (#2670)

build(chrome): update the pinned browser version to 131.0.6770.0 (#2670) #10703

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Unit tests
# Declare default permissions as read only.
permissions: read-all
env:
FORCE_COLOR: 3
on:
merge_group:
pull_request:
push:
branches: 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: '.nvmrc'
cache: npm
- uses: google/wireit@83d7f8bed70b7bcfc40f4b9f54f4b7485753991b # setup-github-actions-caching/v2.0.1
- name: Install and build npm dependencies
run: npm ci
- name: Verify mapper size
run: du -sh lib/iife/mapperTab.js
- name: Run unit tests
run: npm run unit