Skip to content

Commit

Permalink
Node – nasa-project, added mongodb for github actions (updated becaus…
Browse files Browse the repository at this point in the history
…e of prettier issues)
  • Loading branch information
art2url committed Nov 13, 2024
1 parent 32c294e commit cacf3a5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
strategy:
matrix:
node-version: [16.x, 20.x]
mongodb-version: ['4.4']
mongodb-version: ["4.4"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Use MongoDB from GitHub actions
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: npm install
- run: npm run build --prefix client
- run: npm test

0 comments on commit cacf3a5

Please sign in to comment.