-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add basic github action for pull requests
- Loading branch information
Showing
2 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: pull-requests | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
style: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: yarn | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
|
||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v44 | ||
with: | ||
files_yaml: | | ||
contracts: | ||
- packages/contracts/**/*.{js,json,ts,sol} | ||
docs: | ||
- apps/docs/**/* | ||
to_format: | ||
- '**/*.{cjs,js,json,jsx,md,mdx,sol,ts,tsx,yaml,yml}' | ||
to_lint: | ||
- '**/*.{cjs,js,jsx,ts,tsx}' | ||
- if: steps.changed-files.outputs.contracts_any_changed == 'true' | ||
name: Compile and lint contracts | ||
run: | | ||
yarn compile:contracts | ||
yarn workspace excubiae-contracts lint | ||
- if: steps.changed-files.outputs.docs_any_changed == 'true' | ||
name: Build and format docs | ||
run: | | ||
yarn workspace excubiae-docs build | ||
yarn workspace excubiae-docs format | ||
- if: steps.changed-files.outputs.libraries_any_changed == 'true' | ||
name: Build packages | ||
run: yarn build:packages | ||
|
||
- if: steps.changed-files.outputs.to_format_any_changed == 'true' | ||
name: Format | ||
run: yarn run prettier --check ${{ steps.changed-files.outputs.to_format_all_changed_files }} | ||
|
||
- if: steps.changed-files.outputs.to_lint_any_changed == 'true' | ||
name: Run Eslint | ||
run: yarn run eslint ${{ steps.changed-files.outputs.to_lint_all_changed_files }} --ext .cjs,.js,.jsx,.ts,.tsx | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: yarn | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
|
||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v44 | ||
with: | ||
files_yaml: | | ||
contracts: | ||
- packages/contracts/**/*.{js,json,ts,sol} | ||
libraries: | ||
- packages/**/*.{js,json,ts} | ||
- '!packages/{circuits,contracts}/**/*' | ||
- if: steps.changed-files.outputs.contracts_any_changed == 'true' | ||
name: Build and Test contracts | ||
run: | | ||
yarn compile:contracts | ||
yarn test:contracts |
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