forked from nenjotsu/technicalindicators
-
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.
Merge pull request #4 from rylorin/dev4
Node 18 support added
- Loading branch information
Showing
8 changed files
with
51 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Quality Check | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- "README.md" | ||
- "LICENSE" | ||
|
||
jobs: | ||
qc: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
strategy: | ||
matrix: | ||
NODE_VERSION: [18.19.1, 20.11.1] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.NODE_VERSION }} | ||
cache: "yarn" # caches the yarn cache folder not node_modules | ||
|
||
- name: Install packages | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: "Build test" | ||
run: yarn build | ||
|
||
# - name: Lint test | ||
# run: yarn lint | ||
|
||
- name: Run tests | ||
run: yarn test |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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