Merge pull request #100 from bartocc/fix-ember-data-deprecate-array-like #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- "v*" | |
pull_request: | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
test: | |
name: Tests and Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: mansona/npm-lockfile-version@v1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
cache: npm | |
- run: npm i -g npm@8 | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run test:node | |
- run: npm run test:ember | |
- run: npm run build | |
floating-dependencies: | |
name: Floating Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
cache: npm | |
- run: npm i -g npm@8 | |
- run: npm install --no-package-lock | |
- run: npm run test:ember | |
- run: npm run build | |
try-scenarios: | |
name: "ember-try: ${{ matrix.ember-try-scenario }}" | |
runs-on: ubuntu-latest | |
needs: test | |
strategy: | |
fail-fast: false | |
matrix: | |
ember-try-scenario: | |
- ember-lts-3.16 | |
- ember-lts-3.20 | |
- ember-lts-3.24 | |
- ember-lts-3.28 | |
- ember-release | |
- ember-default-with-jquery | |
- ember-classic | |
- embroider-safe | |
- embroider-optimized | |
- no-deprecations | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
cache: npm | |
- run: npm i -g npm@8 | |
- run: npm ci | |
- name: test | |
run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup | |
- run: npm run build | |
allow-fail-try-scenarios: | |
name: ${{ matrix.try-scenario }} - Allowed to fail | |
runs-on: ubuntu-latest | |
needs: 'test' | |
permissions: | |
pull-requests: write | |
strategy: | |
fail-fast: false | |
matrix: | |
try-scenario: | |
- ember-canary | |
- ember-beta | |
- ember-release-no-deprecations | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
cache: npm | |
- run: npm i -g npm@8 | |
- run: npm ci | |
- run: npm run build | |
- name: test | |
id: tests | |
run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup | |
continue-on-error: true | |
- uses: mainmatter/continue-on-error-comment@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
outcome: ${{ steps.tests.outcome }} | |
test-id: ${{ matrix.try-scenario }} |