-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub workflow for the @narval/transaction-request-intent
Prevent workflows to run on changes in any other workflow configuration.
- Loading branch information
1 parent
2505fe1
commit f4165dc
Showing
5 changed files
with
51 additions
and
2 deletions.
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
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
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,44 @@ | ||
name: Transaction Request Intent CI | ||
|
||
on: | ||
push: | ||
paths: | ||
- packages/transaction-request-intent/** | ||
- .github/workflows/transaction_request_intent_ci.yml | ||
- Makefile | ||
- jest.config.ts | ||
- jest.preset.js | ||
- .eslintrc.json | ||
- .prettierrc | ||
- package.json | ||
- package-lock.json | ||
|
||
jobs: | ||
build-and-test: | ||
name: Build and test | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.4.0' | ||
|
||
- name: Install dependencies | ||
run: | | ||
make install/ci | ||
- name: Code format | ||
shell: bash | ||
run: | | ||
make format/check | ||
make lint/check | ||
- name: Test unit | ||
shell: bash | ||
run: | | ||
make transaction-request-intent/test/unit |
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
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,4 @@ | ||
TRANSACTION_REQUEST_INTENT_PROJECT_NAME := transaction-request-intent | ||
|
||
transaction-request-intent/test/unit: | ||
npx nx test:unit ${TRANSACTION_REQUEST_INTENT_PROJECT_NAME} |