Skip to content

fix(deps): update all non-major dependencies #30

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #30

Workflow file for this run

name: Build and test
on: [push]
env:
NODE_VERSION: 16
PNPM_VERSION: 8
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Pnpm
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Types check
run: pnpm types-check
- name: Build
run: pnpm build
- name: Test
run: pnpm test