Skip to content

misc: update dependencies #38

misc: update dependencies

misc: update dependencies #38

Workflow file for this run

name: Test branch or PR
on:
pull_request:
branches:
- master
jobs:
testlint:
name: Test and Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14.17.0
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint code
run: yarn lint
- name: Run tests
run: yarn test