Skip to content

Bump debug from 4.3.4 to 4.3.5 #650

Bump debug from 4.3.4 to 4.3.5

Bump debug from 4.3.4 to 4.3.5 #650

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
- master
jobs:
tests:
name: Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: '16.x'
- name: Install
run: pnpm install
- name: Linting
run: pnpm lint:js
- name: Test
run: pnpm run test --coverage
integration_tests:
name: Integration Tests
strategy:
matrix:
ember_version: ['3.10', '3.13']
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: '16.x'
- name: Install
run: pnpm install
- run: pnpm build
- name: Test
env:
EMBER_VERSION: ${{ matrix.ember_version }}
run: pnpm run test:integration