Merge pull request #2072 from ember-learn/broken-image #1638
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
jobs: | |
lint: | |
name: Lint files | |
runs-on: ubuntu-latest | |
timeout-minutes: 7 | |
steps: | |
- name: Check out a copy of the repo | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- name: Lint | |
run: pnpm run lint | |
test-app: | |
name: Test app | |
runs-on: ubuntu-latest | |
timeout-minutes: 7 | |
steps: | |
- name: Check out a copy of the repo | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- name: Test | |
uses: percy/[email protected] | |
with: | |
custom-command: pnpm run test:ember | |
env: | |
PERCY_TOKEN: 877df6aad8486060f69a34864b6cd33f870633743b23411343737c46a875a762 | |
test-node: | |
name: Test node-tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 7 | |
steps: | |
- name: Check out a copy of the repo | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- name: Test | |
run: pnpm run test:node |