Skip to content

list the installed package #15

list the installed package

list the installed package #15

Workflow file for this run

name: CI - Stable
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies (stable)
run: |
rm package-lock.json
npm install next@latest react@latest react-dom@latest --legacy-peer-deps
npm install
npm list
- name: Run tests
run: npm test
- name: Build
run: npm run build