Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kajgm committed Nov 6, 2024
1 parent 1414b73 commit 6037007
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
node-version-file: "client/.nvmrc"
cache: "npm"
- name: Install
run: npm ci
Expand All @@ -38,28 +38,15 @@ jobs:
working-directory: ./client
env:
FMP_KEY: ""
STOCK_TICKERS: "MSFT,AAPL,NVDA,AMD,INTC,AMZN"
CRYPTO_TICKERS: "ETH-USD,BTC-USD"
timeout-minutes: 10
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-20.04, windows-latest, macos-latest]
exclude:
- os: windows-latest
node-version: 16.x
- os: windows-latest
node-version: 18.x
- os: macos-latest
node-version: 16.x
- os: macos-latest
node-version: 18.x
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version-file: "client/.nvmrc"
cache: "npm"
- name: Install
run: npm ci
Expand Down

0 comments on commit 6037007

Please sign in to comment.