Skip to content

Commit

Permalink
CI tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Feb 15, 2024
1 parent 27b9578 commit 9910478
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,25 +44,32 @@ jobs:
pnpm \
--filter '!./standard' \
--filter '!./examples/**' \
--filter '!@fullcalendar/angular' \
--filter '!@fullcalendar-tests/*' \
install
- name: Lint
run: |
pnpm \
--filter '!./standard' \
--filter '!./examples/**' \
--filter '!@fullcalendar/angular' \
--filter '!@fullcalendar-tests/*' \
run lint
- name: Build
run: |
pnpm \
--filter '!./standard' \
--filter '!./examples/**' \
--filter '!@fullcalendar/angular' \
--filter '!@fullcalendar-tests/*' \
run build
# execute only contrib tests, as "smoke" tests. they're fast
- name: Test
run: |
pnpm \
--filter './contrib/**' \
--filter '!@fullcalendar/angular' \
run test
9 changes: 8 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
environment: production
environment: Production

steps:
- name: Checkout
Expand Down Expand Up @@ -49,13 +49,17 @@ jobs:
pnpm \
--filter '!./standard' \
--filter '!./examples/**' \
--filter '!@fullcalendar/angular' \
--filter '!@fullcalendar-tests/*' \
install
- name: Lint
run: |
pnpm \
--filter '!./standard' \
--filter '!./examples/**' \
--filter '!@fullcalendar/angular' \
--filter '!@fullcalendar-tests/*' \
run lint
- name: Bump Versions
Expand All @@ -69,6 +73,8 @@ jobs:
pnpm \
--filter '!./standard' \
--filter '!./examples/**' \
--filter '!@fullcalendar/angular' \
--filter '!@fullcalendar-tests/*' \
run build && \
pnpm run archive
Expand All @@ -77,6 +83,7 @@ jobs:
run: |
pnpm \
--filter './contrib/**' \
--filter '!@fullcalendar/angular' \
run test
# - name: Sync Repos
Expand Down

0 comments on commit 9910478

Please sign in to comment.