fix(deps): update dependency @netlify/edge-functions to v2.15.0 (#7353) #8121
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
- '!release-please--**' | |
jobs: | |
unit: | |
name: Unit | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-2025] | |
node-version: ['20.12.2', '22.x'] | |
exclude: | |
- os: windows-2025 | |
node-version: '22.x' | |
fail-fast: false | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
check-latest: true | |
- name: Install core dependencies | |
run: npm ci --no-audit | |
- name: Build project | |
run: npm run build | |
- name: Run unit tests | |
run: npm run test:unit -- --coverage |