do subrepo sync at end of release, and not criticial #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
TZ: "America/New_York" | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup PNPM | |
uses: pnpm/[email protected] | |
with: | |
version: 8.6.3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.13.0 | |
cache: 'pnpm' | |
# - name: Setup Turbo Cache | |
# uses: actions/cache@v3 | |
# with: | |
# path: node_modules/.cache/turbo | |
# key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }} | |
# restore-keys: turbo-${{ github.job }}-${{ github.ref_name }}- | |
- name: Install Dependencies | |
run: | | |
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 |