Skip to content

.github: bump actions/checkout from 3 to 4 #546

.github: bump actions/checkout from 3 to 4

.github: bump actions/checkout from 3 to 4 #546

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@v4
- 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@v4
- 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