Skip to content

Bump fast-uri from 3.1.2 to 3.1.4 #182

Bump fast-uri from 3.1.2 to 3.1.4

Bump fast-uri from 3.1.2 to 3.1.4 #182

Workflow file for this run

name: Prettier and linter
on:
pull_request:
branches: [master]
jobs:
prettier-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Run prettier
run: npm run prettier-check