Skip to content

chore(deps): update dependency @types/chrome to v0.0.279 #4060

chore(deps): update dependency @types/chrome to v0.0.279

chore(deps): update dependency @types/chrome to v0.0.279 #4060

Workflow file for this run

name: Unit tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: ./node_modules/.bin/eslint .
- run: node --unhandled-rejections=strict fern.js build configs/ci/unit-tests.js --include-tests
- run: node --unhandled-rejections=strict fern.js test configs/ci/unit-tests.js -l unit-node --environment testing --no-build --ci report.xml
- if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
run: npm audit