Skip to content

build(deps): bump immutable from 5.1.4 to 5.1.5 #783

build(deps): bump immutable from 5.1.4 to 5.1.5

build(deps): bump immutable from 5.1.4 to 5.1.5 #783

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
id-token: write
contents: write
jobs:
install:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v4
- uses: './.github/actions/setup-environment'
# cache cypress runner
- uses: './.github/actions/cypress-cache'
- name: Check Node version
run: node --version && npm --version
- name: Install deps
run: npm ci
lint:
needs: [install]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/setup-environment'
- uses: './.github/actions/lint'
test:
runs-on: ubuntu-24.04
needs: [install]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/setup-environment'
- uses: './.github/actions/test-unit'
integration:
runs-on: ubuntu-24.04
needs: [install]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/setup-environment'
- uses: './.github/actions/test-integration'
build:
runs-on: ubuntu-24.04
needs: [install]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/setup-environment'
- uses: nrwl/nx-set-shas@v4
- name: Install deps
run: npm ci
- name: Build affected
env:
NX_SKIP_NX_CACHE: true
run: npx nx affected -t build --exclude=@redhat-cloud-services/CLIENTNAME-client
release:
runs-on: ubuntu-24.04
needs: [install, lint, test, build]
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ssh-key: ${{ secrets.BOT_SSH_KEY}}
- uses: './.github/actions/setup-environment'
- uses: './.github/actions/release'
with:
gh_token: ${{ secrets.BOT_GH_TOKEN }}
gh_name: ${{ secrets.GH_NAME }}
gh_email: ${{ secrets.GH_EMAIL }}