Skip to content

Merge pull request #112 from bustle/link-test #96

Merge pull request #112 from bustle/link-test

Merge pull request #112 from bustle/link-test #96

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request: {}
jobs:
test:
name: "Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run test:ember
floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --no-lockfile
- run: pnpm run test:ember
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: "test"
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.12
- ember-lts-5.12
- ember-release
- ember-beta
- ember-canary
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --frozen-lockfile
- run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}