Skip to content

Commit

Permalink
Update GH Actions config for the release-1.x branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreeman committed Feb 15, 2024
1 parent cc41f66 commit dd9e104
Showing 1 changed file with 2 additions and 24 deletions.
26 changes: 2 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
push:
# filtering branches here prevents duplicate builds from pull_request and push
branches:
- master
- 'release-1.x'
- 'v*'
# always run CI for tags
tags:
Expand All @@ -25,32 +25,10 @@ jobs:
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: 10
node-version: 16
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ember

test-try:
name: Ember Try
runs-on: ubuntu-latest
strategy:
matrix:
scenario:
- ember-lts-3.8
- ember-release
- ember-beta
- ember-canary
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: 10
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Try Scenario
run: yarn ember try:one ${{ matrix.scenario }}

0 comments on commit dd9e104

Please sign in to comment.