Skip to content

fixes c-common and d-messenger #32

fixes c-common and d-messenger

fixes c-common and d-messenger #32

Workflow file for this run

name: Testing CI
on: pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node:
- 14
- 16
- 18
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
working-directory: ./JavaScript/d-messenger
- run: npm test
working-directory: ./JavaScript/d-messenger