Skip to content

build(deps): bump undici from 6.21.0 to 6.21.1 in the npm_and_yarn group #63

build(deps): bump undici from 6.21.0 to 6.21.1 in the npm_and_yarn group

build(deps): bump undici from 6.21.0 to 6.21.1 in the npm_and_yarn group #63

Workflow file for this run

# Builds the package and runs all tests.
name: CI
on:
push:
branches-ignore:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Use Node.js v20
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install modules
run: npm ci --no-audit --ignore-scripts
- name: Lint
run: npm run lint
- name: Run unit tests
run: npm run test