Skip to content

Fixed an issue in the latest release file #133

Fixed an issue in the latest release file

Fixed an issue in the latest release file #133

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Prepare Node Environment
uses: actions/setup-node@v2
with:
node-version: 17
cache: 'npm'
- name: Install Dependencies
run: make install-dev
- name: Lint
run: make lint