Skip to content

disabled sourcemaps #44

disabled sourcemaps

disabled sourcemaps #44

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches: [main, dev]
push:
branches: [main, dev]
env:
HUSKY: 0
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node}}
cache: npm
- name: Upgrade npm
run: |
npm install -g npm@latest
npm -v
- name: Install deps (root)
working-directory: packages/react-url-query-params
run: npm install
- name: Run tests (unit)
working-directory: packages/react-url-query-params
run: npm run test:run