Skip to content

Commit

Permalink
GitHub Actions workflow to build app
Browse files Browse the repository at this point in the history
  • Loading branch information
jfallows committed Jan 31, 2023
1 parent 1402ea4 commit c089ee7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: app

on:
push:
branches: [ main, 'feature/**' ]
pull_request:
branches: [ main, 'feature/**' ]
workflow_dispatch:

jobs:
build:
name: Build App
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
#- run: npm run check:prettier
#- run: npm run check:lint
- run: npm run build --if-present
- run: npm test

0 comments on commit c089ee7

Please sign in to comment.