Skip to content

Node 20, .nvmrc

Node 20, .nvmrc #15

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Having "" here enables the `node-version-file` option
node-version: ["", latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version-file: .nvmrc
- run: yarn install
- run: yarn build