Skip to content

Update Node.js to v20 #1673

Update Node.js to v20

Update Node.js to v20 #1673

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
mongodb-version: [4.0, 4.2, 4.4]
redis-version: [4, 5, 6]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB v${{ matrix.mongodb-version }}
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-port: 27017
mongodb-db: web-push
- name: Start Redis v${{ matrix.redis-version }}
uses: supercharge/[email protected]
with:
redis-container-name: redis-rollout
redis-version: ${{ matrix.redis-version }}
redis-port: 6379
- name: Fix working directory ownership
if: matrix.container
run: chown root.root .
- run: npm install
- run: npm ci
- run: npm run build --if-present
# - run: npm test
# - run: npm run dev