Skip to content

Commit

Permalink
[chore] enabled test and build steps in ci (#21)
Browse files Browse the repository at this point in the history
Signed-off-by: Giuseppe Macri <[email protected]>
  • Loading branch information
giuseppe-coinbase authored Dec 6, 2023
1 parent 4139ecb commit 52ad352
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache: 'yarn'
- name: Install dependencies
run: npm install
# - name: Lint Check
# # When fails, please run "npm run lint" to your code
# run: npm run lint
run: yarn install
- name: Format Check
# When fails, please run "yarn format:fix" to your code
run: npm run format
run: yarn format
- name: Test
# When fails, please fix tests
run: yarn test
- name: Build
# When fails, please validate build steps
run: yarn build
22 changes: 22 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## Description

Please provide a description of your PR and which issue it fixes.
If this PR is a work in progress, please prefix the title with [WIP].

## Type of change
- [] Bug fix (non-breaking change which fixes an issue)
- [] New feature (non-breaking change which adds functionality)
- [] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [] Refactor (refactoring production code or docs)
- [] Test (adding missing tests or fixing existing tests)
- [] Other (please describe):

## Checklist
- [] unit tests

## Update example files
If you have updated the example files, please provide a screenshot of the changes (if appropriate).




0 comments on commit 52ad352

Please sign in to comment.