Skip to content

Bump next from 14.1.1 to 14.2.10 (#158) #239

Bump next from 14.1.1 to 14.2.10 (#158)

Bump next from 14.1.1 to 14.2.10 (#158) #239

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
name: Test Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Print Node.js Version
run: node --version
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run "build" step
run: pnpm build
- name: Run tests
run: pnpm test