Example Push Flow #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |