Skip to content

Bump actions/checkout from 5.0.0 to 6.0.0 #353

Bump actions/checkout from 5.0.0 to 6.0.0

Bump actions/checkout from 5.0.0 to 6.0.0 #353

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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 #v6.0.0
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm test --color=always
env:
SOCKET_API_KEY: ${{ secrets.SOCKET_API_KEY }}