chore: ci only when targeting main #776
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: PR | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
# https://graphite.dev/docs/stacking-and-ci#running-ci-upstack | |
# This clause will prevent upstack PRs from running CI, because | |
# upstack branches aren't directly based on main. | |
branches: [main] | |
jobs: | |
pr: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- name: Checkout all commits | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
node_version: 20.10.0 | |
- name: Commit lint | |
shell: bash | |
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} | |
- name: Lint | |
shell: bash | |
run: npx nx affected --target=lint --parallel=5 | |
- name: Lint Go | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
skip-cache: true | |
- name: Test | |
shell: bash | |
run: npx nx affected --target=test --parallel=5 | |
- name: Test Go | |
uses: n8maninger/action-golang-test@v1 | |
with: | |
args: '-race' | |
- name: Build | |
shell: bash | |
run: npx nx affected --target=build --configuration=production --parallel=5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NOTION_TOKEN: ${{ secrets.NOTION_TOKEN }} | |
- name: Export | |
shell: bash | |
# issue with parallelism | |
run: npx nx affected --target=build --configuration=export --parallel=5 |