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

chore(Release): 1.3.4 #35

chore(Release): 1.3.4

chore(Release): 1.3.4 #35

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
eslint:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn --immutable
- name: Linting
run: yarn lint
- name: Run TypeScript compiler
run: yarn build:check