Skip to content

chore(deps): update dependency dotenv to v17.3.1 #100

chore(deps): update dependency dotenv to v17.3.1

chore(deps): update dependency dotenv to v17.3.1 #100

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x, 20.x, 21.x, 22.x]
fail-fast: true
name: Test TypeScript build
steps:
- uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build the package
run: pnpm build
- name: Run tests
run: pnpm run coverage