Skip to content

update all dependencies #249

update all dependencies

update all dependencies #249

Workflow file for this run

name: Build and Test
on: [push]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
node-version: [16.x, 17.x]
operating-system: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: pnpm/[email protected]
- name: Setup Node.js environment ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
# - name: Run Build and Tests
# run: pnpm run build-test
env:
CI: true