Skip to content

Bump koa from 2.14.2 to 2.15.4 #23

Bump koa from 2.14.2 to 2.15.4

Bump koa from 2.14.2 to 2.15.4 #23

Workflow file for this run

name: "Test Cinnamon"
on:
push:
branches: [ master ]
paths:
- package.json
- packages/**
pull_request:
branches: [ master ]
paths:
- package.json
- packages/**
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
# Test current major node versions (and one prior active/maintenance
# version) to ensure general compatability.
node-version: [ 18.x, 20.10.0, 21.x ]
steps:
# Clone and set up the code base.
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# Perform a 'CI' install and test.
# We are not currently using Yarn PnP (and therefore not using Zero Installs)
# ...so IMMUTABLE_INSTALLS are disabled. If we do switch to PnP, these MUST be
# enabled.
- run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install
- run: yarn build
- run: yarn test