try adam shaw #27
Workflow file for this run
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: Test GH | |
on: | |
push: | |
branches: | |
- newrepo | |
env: | |
TZ: "America/New_York" | |
jobs: | |
test-gh: | |
name: Test GH | |
runs-on: ubuntu-latest | |
environment: Production | |
env: | |
GH_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 # fetches ALL history. needed for git-subrepo operations | |
fetch-tags: false # but don't need all tags | |
- name: Setup Git Credentials | |
run: | | |
gh auth setup-git && \ | |
git config --global user.name "Adam Shaw" && \ | |
git config --global user.email "[email protected]" | |
- 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: Install Dependencies | |
run: | | |
pnpm \ | |
--filter 'fullcalendar...' \ | |
--filter 'fullcalendar-scheduler...' \ | |
--filter '@fullcalendar/*...' \ | |
--filter '@fullcalendar-scripts/*...' \ | |
--filter '@fullcalendar-tests/*...' \ | |
--filter '!./contrib/**' \ | |
install | |
- name: Sync Repos | |
run: | | |
pnpm run sync-repos |