Skip to content

Commit

Permalink
Merge pull request #338 from emberjs/npm
Browse files Browse the repository at this point in the history
switch to npm
  • Loading branch information
mansona authored Feb 14, 2024
2 parents 59ffc91 + a763e39 commit 8a47893
Show file tree
Hide file tree
Showing 3 changed files with 15,648 additions and 8,016 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn lint:js
- run: yarn test
cache: npm
- run: npm i -g npm@7
if: ${{ matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x' }}
- run: npm ci
- run: npm run lint:js
- run: npm test
Loading

0 comments on commit 8a47893

Please sign in to comment.