fix(deps): bump debug from 4.3.4 to 4.4.0 #620
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr | |
on: pull_request | |
jobs: | |
build: | |
name: Build and test | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
# Times out on GitHub CI :( | |
# - macos-latest | |
# - windows-latest | |
node-version: [18, 19, 21] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Run tests | |
run: yarn test |