Skip to content

Commit

Permalink
250. Continuous Integration: Test Pipeline - 11min
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Mark Montesclaros committed Dec 30, 2023
1 parent 13584ba commit 57906e9
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,18 @@ on:
branches: [ main ]
jobs:
build:
env:
CI: true
strategy:
matrix:
node-version: [14.x, 16.x, 20.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js version 20
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '20'
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --prefix client
- run: npm run build --prefix client
- run: npm test

0 comments on commit 57906e9

Please sign in to comment.