Skip to content

Example Push Flow

Example Push Flow #3

Workflow file for this run

name: Example Push Flow
run-name: Example Push Flow
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 19
- name: Install
run: npm ci
- name: Build
run: npm build:ci
- name: Test
run: npm test
- name: Audit
run: npm audit