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/create-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: "18"
node-version: "lts/krypton"
- name: Check and save dispatched branch
id: dispatched-branch
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deployment-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@ on:
paths:
- "src/**"
- ".storybook/**"
- ".github/workflows/deployment-storybook.yml"
- "index.ts"
- package.json
- yarn.lock
push:
branches:
- "develop"
paths:
- "src/**"
- ".storybook/**"
- ".github/workflows/deployment-storybook.yml"
- "index.ts"
- package.json
- yarn.lock

jobs:
Expand All @@ -33,7 +37,7 @@ jobs:
git log --oneline -1
- uses: actions/setup-node@main
with:
node-version: "18"
node-version: "lts/krypton"
- name: Install dependencies
run: yarn install
- name: Create jest results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-featurefix-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
git config user.email "${{ github.actor }}@users.noreply.github.com"
- uses: actions/setup-node@main
with:
node-version: "18"
node-version: "lts/krypton"
- name: Create pre-release version number
run: |
preid=$(echo ${{ steps.branch-name.outputs.current_branch }} | tr '[:upper:]' '[:lower:]' | sed 's=[^[:alnum:][:space:]"]==g')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-final-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
git config user.email "${{ github.actor }}@users.noreply.github.com"
- uses: actions/setup-node@main
with:
node-version: "18"
node-version: "lts/krypton"
- name: Get version
id: package-version
run: echo "version=$(node -p -e "require('./package.json').version.split('-').shift()")" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
git config user.email "${{ github.actor }}@users.noreply.github.com"
- uses: actions/setup-node@main
with:
node-version: "18"
node-version: "lts/krypton"
- name: Create release candidate version number
run: |
preid="rc"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
ref: ${{ inputs.ref }}
- uses: actions/setup-node@main
with:
node-version: "18"
node-version: "lts/krypton"
registry-url: "https://registry.npmjs.org"
- name: Set name vars
id: info-vars
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: "🧪 Test: code"
on:
pull_request:
paths:
- ".github/workflows/test-code.yml"
- "src/**.js"
- "src/**.ts"
- "src/**.tsx"
Expand All @@ -19,7 +20,7 @@ jobs:
- name: Test using Node.js
uses: actions/setup-node@main
with:
node-version: "18"
node-version: "lts/krypton"
- run: yarn install
- run: yarn compile
- run: yarn compile-scss
Expand Down