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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
- name: Call action to use Node.js ${{ matrix.node-version }}
id: setup-node
uses: ./
with:
Expand All @@ -29,6 +29,7 @@ jobs:
run: |
source assert.sh
assert_eq "$(node -v)" "${{ steps.setup-node.outputs.node-version }}"
assert_eq "@linz/*,@linzjs/*,@basemaps/*" "$SAFE_CHAIN_MINIMUM_PACKAGE_AGE_EXCLUSIONS"
- name: Test Safe Chains
run: |
Expand Down
4 changes: 3 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,12 @@ runs:
- name: Setup Aikido Safe-Chain
shell: bash
env:
SAFE_CHAIN_NPM_MINIMUM_PACKAGE_AGE_EXCLUSIONS: "@linz/*,@linzjs/*,@basemaps/*"
SAFE_CHAIN_MINIMUM_PACKAGE_AGE_EXCLUSIONS: "@linz/*,@linzjs/*,@basemaps/*"
run: |
set -Eeuo pipefail

echo "SAFE_CHAIN_MINIMUM_PACKAGE_AGE_EXCLUSIONS=${SAFE_CHAIN_MINIMUM_PACKAGE_AGE_EXCLUSIONS}" >> "$GITHUB_ENV"

MAX_ATTEMPTS=5
DELAY=5 # seconds

Expand Down
Loading