Skip to content

Update actions/checkout action to v4 #4

Update actions/checkout action to v4

Update actions/checkout action to v4 #4

Workflow file for this run

name: PR Guardrails
on:
workflow_dispatch:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: |
# npm install
npm ci
- name: Run unit tests
run: |
set -x
pwd
ls -all
npm run test
# - name: Run smoke tests
# run: |
# set -x
# pwd
# ls -all
# npm install -g newman
# make failed
- name: Install reporter locally
run: |
set -x
pwd
ls -all
make local-install