Skip to content

Migrate to pnpm

Migrate to pnpm #979

Workflow file for this run

name: CI for features
on:
push:
branches:
- feature/*
jobs:
feature:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
cache: yarn
- run: yarn install
- name: Run prettier
run: yarn run check-format
env:
CI: true