Skip to content

Commit

Permalink
Break CI Github Action Into Smaller Jobs (devfile#121)
Browse files Browse the repository at this point in the history
* break ci into multiple jobs

Signed-off-by: Jordan Dubrick <jdubrick@redhat.com>

* remove .yml to .yaml for nx format check

Signed-off-by: Jordan Dubrick <jdubrick@redhat.com>

* split node and docker builds

Signed-off-by: Jordan Dubrick <jdubrick@redhat.com>

* pin version to commit hash for setup-node and nx-set-shas

Signed-off-by: Jordan Dubrick <jdubrick@redhat.com>

* add top level permission for ci job

Signed-off-by: Jordan Dubrick <jdubrick@redhat.com>

---------

Signed-off-by: Jordan Dubrick <jdubrick@redhat.com>
  • Loading branch information
Jdubrick authored Apr 5, 2024
1 parent a0bc065 commit 306a3a9
Show file tree
Hide file tree
Showing 2 changed files with 145 additions and 71 deletions.
145 changes: 145 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
# Copyright Red Hat
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: CI
on:
push:
branches:
- main
pull_request:

permissions: read-all

concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true

jobs:
test-and-lint:
name: Test and Lint
runs-on: ubuntu-latest

env:
NX_SKIP_NX_CACHE: true

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
fetch-depth: 0

- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 #v4.0.0
with:
node-version-file: 'package.json'

- name: Set SHA
uses: nrwl/nx-set-shas@76907e7e5d3cd17ddb5e2b123389f054bffcdd03 #v4.0.0

- name: Install
run: |
yarn install --frozen-lockfile
- name: Lint
run: |
yarn nx format:check
yarn nx affected --target=lint --parallel=3
- name: Test
run: |
yarn nx affected --target=test --parallel=3 --ci --code-coverage
node-build:
name: Node Build
runs-on: ubuntu-latest

env:
NX_SKIP_NX_CACHE: true

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
fetch-depth: 0

- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 #v4.0.0
with:
node-version-file: 'package.json'

- name: Set SHA
uses: nrwl/nx-set-shas@76907e7e5d3cd17ddb5e2b123389f054bffcdd03 #v4.0.0

- name: Install
run: |
yarn install --frozen-lockfile
- name: Build
run: |
yarn nx affected --target=build --parallel=3
docker-build:
name: Docker Build
runs-on: ubuntu-latest

env:
NX_SKIP_NX_CACHE: true

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
fetch-depth: 0

- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 #v4.0.0
with:
node-version-file: 'package.json'

- name: Set SHA
uses: nrwl/nx-set-shas@76907e7e5d3cd17ddb5e2b123389f054bffcdd03 #v4.0.0

- name: Install
run: |
yarn install --frozen-lockfile
- name: Docker Build
run: |
yarn nx affected --target=docker-build --parallel=3
e2e:
name: E2E
runs-on: ubuntu-latest

env:
NX_SKIP_NX_CACHE: true

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
fetch-depth: 0

- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 #v4.0.0
with:
node-version-file: 'package.json'

- name: Set SHA
uses: nrwl/nx-set-shas@76907e7e5d3cd17ddb5e2b123389f054bffcdd03 #v4.0.0

- name: Install
run: |
yarn install --frozen-lockfile
- name: E2E
run: |
# parallelization cannot be easily used here because of port conflicts
yarn nx affected --target=e2e --configuration=production --parallel=1
71 changes: 0 additions & 71 deletions .github/workflows/ci.yml

This file was deleted.

0 comments on commit 306a3a9

Please sign in to comment.