Release 1.0.0 #94
This file contains hidden or 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: | |
| - 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 }} |