Skip to content

v1.7.1 (#1791)

v1.7.1 (#1791) #11

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile --non-interactive --prefer-offline
- name: Test
run: yarn test
- name: Lint
run: yarn lint