Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Switch to pnpm

Switch to pnpm #6

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Run lint
run: |
yarn lint
- name: Run tests
run: |
yarn test