Skip to content

deps(misc): bump ember-cli-code-coverage from 2.1.1 to 3.1.0 #545

deps(misc): bump ember-cli-code-coverage from 2.1.1 to 3.1.0

deps(misc): bump ember-cli-code-coverage from 2.1.1 to 3.1.0 #545

Workflow file for this run

name: Build and Tests
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
pull_request:
branches:
- main
jobs:
lint-app:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: lint
run: yarn run lint
test-app:
name: Running Tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: ember t
run: yarn run test:ember