Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza-cskn authored Sep 13, 2023
1 parent c4a259e commit eb9e8d8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ jobs:
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
service: [blog, comment]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- name: go ${{ matrix.service }} directory
run: cd ${{ matrix.service }}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
run: cd blog && npm test
name: Use Node.js ${{ matrix.node-version }}
- name: install dependencies
run: npm install
- name: run tests
run: npm test

0 comments on commit eb9e8d8

Please sign in to comment.