Skip to content

chore(go.mod): update dependencies for better compatibility and bug f… #54

chore(go.mod): update dependencies for better compatibility and bug f…

chore(go.mod): update dependencies for better compatibility and bug f… #54

Workflow file for this run

name: jotbot-ts
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/jotbot
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: './packages/pnpm-lock.yaml'
- run: pnpm i
- run: pnpm test