diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index f30d5c1..2f5853e 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -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 @@ -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