Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/npm-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

- name: 🧩 Install Dependencies
id: install-dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: 🧩 Run Security Audit
id: run-security-audit
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pr-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
pull_request:
branches: [main]
paths-ignore:
- "**.md"
- "LICENSE"
- '**.md'
- 'LICENSE'
workflow_dispatch:

env:
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
id: set-shas
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: "main"
main-branch-name: 'main'

- name: 🥡 Setup pnpm
id: setup-pnpm
Expand All @@ -64,7 +64,7 @@ jobs:

- name: 🧩 Install Dependencies
id: install-dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: 🦄 Lint All Files
id: lint-with-eslint
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
id: set-shas
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: "main"
main-branch-name: 'main'

- name: 🥡 Setup pnpm
uses: pnpm/action-setup@v2.1.0
Expand All @@ -119,7 +119,7 @@ jobs:

- name: 🧩 Install Dependencies
id: install-dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: 🏗️ Build
id: build
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:

- name: 🧩 Install Dependencies
id: install-dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: 🏗️ Build
id: build
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:

- name: 🧩 Install Dependencies
id: install-dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: 🏗️ Build
id: build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: 🧩 Install Dependencies
id: install-dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: 🏗️ Build
id: build
Expand All @@ -64,6 +64,6 @@ jobs:
title: '[Release] [GitHub Action] Update package versions'
publish: pnpm publish:packages
version: pnpm version:packages
commit: "[WSO2 Release] [GitHub Action] [Release] [skip ci] update package versions"
commit: '[WSO2 Release] [GitHub Action] [Release] [skip ci] update package versions'
env:
GITHUB_TOKEN: ${{ env.GH_TOKEN }}
Loading