Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Fixed issue with user profiles not being specific to the user associa… #33

Fixed issue with user profiles not being specific to the user associa…

Fixed issue with user profiles not being specific to the user associa… #33

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 the node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI For Accord
on:
push: {}
pull_request: {}
jobs:
build:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
strategy:
matrix:
node-version: [10.x, 14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# Use a specific npm version for Node.js 10.x
# Adjust the version according to your requirement
# Check available npm versions: https://npmjs.com/package/npm/v/10.24.0
npm: '10.24.0'
cache: 'npm'
- run: cd Application/Frontend # Navigating to the Frontend folder before anything else
- run: npm install -g npm-check
- run: npm --version
- run: npm test:jest