Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Bump zaproxy/action-full-scan from 0.4.0 to 0.10.0 #4100

Bump zaproxy/action-full-scan from 0.4.0 to 0.10.0

Bump zaproxy/action-full-scan from 0.4.0 to 0.10.0 #4100

Workflow file for this run

---
name: Test
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
permissions: read-all
jobs:
test_frontend:
name: test frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v3
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Install dependencies
run: npm ci
- name: Test frontend
run: npm run test