Skip to content

Export joi namespace along with const (#245) #8

Export joi namespace along with const (#245)

Export joi namespace along with const (#245) #8

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [12.x, 14.x, 16.x, 18.x, latest]
express-version: [latest, next]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
express-version: ${{ matrix.express-version }}
- run: npm install -g codecov
- run: npm install -g json
- run: json -I -f package.json -e "this.devDependencies.express=\"${{ matrix.express-version }}\""
- run: npm install
- run: npm test