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
13 changes: 12 additions & 1 deletion .github/workflows/javascript-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,19 @@ on:
- 'main'
paths:
- 'Source/**'
- 'package.json'
- 'rollup.config.mjs'
- 'yarn.lock'
- '.github/workflows/javascript-build.yml'
pull_request:
branches:
- '**'
paths:
- 'Source/**'
- 'package.json'
- 'rollup.config.mjs'
- 'yarn.lock'
- '.github/workflows/javascript-build.yml'

permissions:
contents: read
Expand Down Expand Up @@ -58,6 +66,9 @@ jobs:
export NODE_OPTIONS="--max-old-space-size=4096"
yarn ci

- name: Build Storybook
run: yarn workspace @cratis/components build-storybook

# Builds the artifact that actually ships to npm (the `prepare` script: tsc -b +
# rollup + copy-css) and loads every subpath of the `exports` map from it.
#
Expand Down Expand Up @@ -113,7 +124,7 @@ jobs:
strategy:
fail-fast: false
matrix:
arc-version: ['20.3.1', '21.19.4', '22.0.1']
arc-version: ['20.3.1', '21.19.4', '22.1.0']

steps:
- name: Checkout code
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ on:
# branch that is released.
branches:
- main
paths:
- main

permissions:
contents: write
Expand Down
Loading