Skip to content

Update node.yaml

Update node.yaml #9

Workflow file for this run

name: Matrix Echo Workflow
on: [push]
jobs:
echo-job:
timeout-minutes: 15
runs-on: warp-ubuntu-latest-x64-2x
strategy:
fail-fast: false
matrix:
node-version: [20.x]
shard:
[
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
]
env:
NODE_OPTIONS: "--max-old-space-size=14336"
steps:
- name: Echo Hello World
run: echo Hello World
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline