Skip to content

Merge pull request #133 from ilios/dependabot/npm_and_yarn/ember-temp… #146

Merge pull request #133 from ilios/dependabot/npm_and_yarn/ember-temp…

Merge pull request #133 from ilios/dependabot/npm_and_yarn/ember-temp… #146

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
env:
CI: true
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: install dependencies
run: npm ci
- name: test
run: npm test
test-floating:
name: Floating Dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
cache: npm
- name: install dependencies
run: npm install --no-package-lock
- name: test
run: npm test