Prepare Release using 'release-plan' (#74) #403
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: Run-Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
push: | |
branches: | |
- main | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: volta-cli/action@v4 | |
- uses: pnpm/action-setup@v4 | |
- id: pnpm-cache-path | |
run: echo "pnpm_cache_path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pnpm-cache-path.outputs.pnpm_cache_path }} | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Lint Addon | |
working-directory: addon | |
run: pnpm run lint | |
- name: Lint Test App | |
working-directory: test-app | |
run: pnpm run lint | |
- name: Lint Docs App | |
working-directory: docs-app | |
run: pnpm run lint | |
test-docs: | |
name: Test Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: volta-cli/action@v4 | |
- uses: pnpm/action-setup@v4 | |
- id: pnpm-cache-path | |
run: echo "pnpm_cache_path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pnpm-cache-path.outputs.pnpm_cache_path }} | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- name: Install Dependencies | |
run: pnpm install | |
- working-directory: addon | |
run: pnpm run build | |
- name: Run Tests | |
working-directory: docs-app | |
run: pnpm run test | |
test: | |
name: Run Ember Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ember-version: | |
[ | |
embroider-safe, | |
embroider-optimized, | |
ember-lts-3.28, | |
ember-lts-4.4, | |
ember-lts-4.8, | |
ember-lts-4.12, | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: volta-cli/action@v4 | |
- uses: pnpm/action-setup@v4 | |
- id: pnpm-cache-path | |
run: echo "pnpm_cache_path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pnpm-cache-path.outputs.pnpm_cache_path }} | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- name: Install Dependencies | |
run: pnpm install | |
- working-directory: addon | |
run: pnpm run build | |
- name: Run Tests | |
working-directory: test-app | |
run: ./node_modules/.bin/ember try:one ${{ matrix.ember-version }} --skip-cleanup |