Skip to content

Commit

Permalink
github workflows push to branch. workflow jobs: prepare, audit, lint,…
Browse files Browse the repository at this point in the history
… test
  • Loading branch information
harvey-dvla committed Mar 26, 2024
1 parent e028273 commit 4ee37a6
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/.github/workflows/PushToBranch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Push To Branch

run-name: ${{github.actor}} Pushed To ${{github.ref_name}}

on: [push]

jobs:
prepare:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: package-lock.json

- name: Install npm version 10
run: npm i -g npm@10

- name: Install Dependencies
run: npm ci

audit:
runs-on: ubuntu-latest
needs: prepare
steps:
- run: npm run audit --audit-level=moderate

lint:
runs-on: ubuntu-latest
needs: prepare
steps:
- run: npm run lint

test:
runs-on: ubuntu-latest
needs: prepare
steps:
- run: npm run test

0 comments on commit 4ee37a6

Please sign in to comment.