This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
Widen range on @glimmer/validator
so that package-managers respecti…
#279
Workflow file for this run
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, v1.x ] | |
pull_request: | |
jobs: | |
lint: | |
name: "Linting" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '8' | |
- run: yarn install --frozen-lockfile --non-interactive | |
- run: yarn tslint | |
- run: yarn build | |
- run: yarn test:types | |
ember-version-tests: | |
name: "Ember Tests: ${{ matrix.ember-version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ember-version: | |
- default | |
#- release | |
#- beta | |
#- canary | |
- lts-3.4 | |
- lts-3.8 | |
- lts-3.12 | |
- lts-3.16 | |
- lts-3.20 | |
- lts-3.24 | |
- lts-3.28 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '12' | |
- run: yarn install --frozen-lockfile --non-interactive | |
- run: yarn test:ember ember-${{ matrix.ember-version }} --skip-cleanup | |