Closes #2: Adding support for all events alongside specific events tr… #5
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: build app | |
on: [push, pull_request] | |
jobs: | |
build-test: | |
strategy: | |
matrix: | |
node-version: | |
- 18 | |
- 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up node-${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies and build the code | |
run: | | |
npm install | |
npm run build |