Skip to content

chore(deps): update pnpm/action-setup action to v2.4.0 #358

chore(deps): update pnpm/action-setup action to v2.4.0

chore(deps): update pnpm/action-setup action to v2.4.0 #358

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2.4.0
with:
version: 6.15.1
- name: Use Node.js v16
uses: actions/setup-node@v3
with:
node-version: v16
registry-url: https://registry.npmjs.org/
cache: "pnpm"
- name: Install Dependencies
run: pnpm install
- name: Test
run: pnpm run test