Skip to content

Bump @types/node from 24.5.1 to 24.5.2 #230

Bump @types/node from 24.5.1 to 24.5.2

Bump @types/node from 24.5.1 to 24.5.2 #230

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: tests
on: [pull_request, push]
env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: ['lts/*']
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm test --color=always
env:
SOCKET_API_KEY: ${{ secrets.SOCKET_API_KEY }}