Skip to content

chore: fix lock file #352

chore: fix lock file

chore: fix lock file #352

Workflow file for this run

name: Build and test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [16]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Install, build and test
timeout-minutes: 5
run: |
pnpm install
pnpm build
pnpm test
env:
CI: true