Skip to content

chore(deps): update node.js to v20.12.2 #315

chore(deps): update node.js to v20.12.2

chore(deps): update node.js to v20.12.2 #315

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: yarn install --immutable --immutable-cache
- name: Prettier
run: yarn run lint:prettier
if: startsWith(matrix.node-version, '18.')