Skip to content

Working on issues

Working on issues #302

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, 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: [main, dev]
pull_request:
branches: [main, dev]
env:
VAULT_MASTER_PASSWORD: Pa$$w0rd
jobs:
build:
#runs-on: [ubuntu-18.04, ubuntu-latest]
runs-on: ${{ matrix.os }}
# httpbin for helper/request
services:
httpbin:
image: kennethreitz/httpbin
ports:
- 80:80
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x, 18.x, 20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
mongodb-version: ["4.2", "4.4", "5.0"]
steps:
- uses: actions/checkout@v4
# mongodb setup
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
# node.js setup
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run build --if-present
- run: npm run lint
- run: npm test