Skip to content

Merge pull request #68 from ember-cli-deploy/dependabot/npm_and_yarn/… #17

Merge pull request #68 from ember-cli-deploy/dependabot/npm_and_yarn/…

Merge pull request #68 from ember-cli-deploy/dependabot/npm_and_yarn/… #17

Workflow file for this run

name: Continuous Integration
on:
push:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn test
test-floating:
name: Floating Dependencies
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: install dependencies
run: yarn install --no-lockfile
- name: test
run: yarn test