Skip to content

Update dependency pnpm to v9 #2407

Update dependency pnpm to v9

Update dependency pnpm to v9 #2407

Workflow file for this run

name: CI
on:
push:
branches:
- master
- 'v*'
pull_request: {}
env:
PNPM_VERSION: 9.1.2
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/[email protected]
with:
node-version: 12.x
cache: pnpm
- run: pnpm install
- run: pnpm lint
test:
name: Node Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install
- run: pnpm test -- --coverage
ember-try-scenarios:
name: Ember Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/[email protected]
with:
node-version: 12.x
cache: pnpm
- run: pnpm install
- run: node_modules/.bin/ember try:each