Merge pull request #8 from ember-cli/update-readme #19
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: {} | |
| concurrency: | |
| group: ci-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| - macos-latest | |
| node-version: [8, 10, 12, 14, 16, 18, 20, 22, 24] | |
| exclude: | |
| - os: macos-latest | |
| node-version: 8 | |
| - os: macos-latest | |
| node-version: 10 | |
| - os: macos-latest | |
| node-version: 12 | |
| - os: macos-latest | |
| node-version: 14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Yarn Classic | |
| run: npm install -g yarn@1 | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile --ignore-engines | |
| - name: Run tests | |
| run: yarn test |