Skip to content

Commit

Permalink
Do not cancel the build if Latest fails
Browse files Browse the repository at this point in the history
fixed #128

Signed-off-by: Jonas Helming <[email protected]>
  • Loading branch information
JonasHelming authored Jan 31, 2022
1 parent 2eb10d1 commit 32fdf8d
Showing 1 changed file with 47 additions and 1 deletion.
48 changes: 47 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,56 @@ jobs:
shell: bash
run: yarn test

- name: Generate and Build Templates
test-with-theia-latest:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-18.04]
node: [12]

steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- name: Install
shell: bash
run: yarn install

- name: Generate and Build Templates with Latest Theia version
shell: bash
run: ./.github/workflows/generate-and-build-all-templates.sh latest

test-with-theia-next:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-18.04]
node: [12]

steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- name: Install
shell: bash
run: yarn install

- name: Generate and Build Templates with Next Theia version
shell: bash
run: ./.github/workflows/generate-and-build-all-templates.sh next

0 comments on commit 32fdf8d

Please sign in to comment.