Skip to content

chore: upgrade version #86

chore: upgrade version

chore: upgrade version #86

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["16.x"]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install Pnpm
run: npm install -g pnpm
- name: Install deps
run: |
pnpm install --no-frozen-lockfile
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test