Merge pull request #44 from kaiachain/feat/ethers-ext-readme #123
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: testing | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
jobs: | |
build: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ | |
- name: testing ethers-ext | |
shell: bash | |
run: | | |
cd ethers-ext && npm install && npm run lint && npm run test && cd - | |
- name: testing js-ext-core | |
shell: bash | |
run: | | |
cd js-ext-core && npm install && npm run lint && npm run test && cd - |