Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not cancel the build if Latest fails #129

Merged
merged 1 commit into from
Jan 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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