Skip to content

rmv pnpm

rmv pnpm #3

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" , "dev" ]
pull_request:
branches: [ "main" , "dev"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x ]
npm-version: [ 10.2.3 ]
name: Use Node.js ${{ matrix.node-version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node enviroment
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup npm
uses: pnpm/action-setup@v2
with:
version: ${{matrix.npm-version}}
- name: Install npm
run: npm install