Skip to content

Merge pull request #91 from SocketDev/dependabot/npm_and_yarn/types/n… #276

Merge pull request #91 from SocketDev/dependabot/npm_and_yarn/types/n…

Merge pull request #91 from SocketDev/dependabot/npm_and_yarn/types/n… #276

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