Skip to content

API Security 2023

API Security 2023 #71

Workflow file for this run

name: Run Tests
on:
pull_request:
# Only run tests when relevant files are changing
paths-ignore:
- "**.md"
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- run: npm test