Skip to content

Bump fast-uri from 3.1.0 to 3.1.4 #416

Bump fast-uri from 3.1.0 to 3.1.4

Bump fast-uri from 3.1.0 to 3.1.4 #416

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
test-node:
strategy:
matrix:
platform: [ubuntu-latest]
node: [20, 22, 24, 'current']
name: CI - Node ${{ matrix.node }} (${{ matrix.platform }})
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install npm latest
run: npm i -g npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:node
test-web:
strategy:
matrix:
platform: [ubuntu-latest]
node: [20, 22, 24, 'current']
name: CI - Node ${{ matrix.node }} (${{ matrix.platform }})
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install npm latest
run: npm i -g npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:web