Skip to content

link changes

link changes #1389

Workflow file for this run

on:
pull_request:
branches:
- master
- dev
push:
branches:
- master
- dev
jobs:
lint:
runs-on: ubuntu-latest
name: Run Linter
steps:
- name: Checkout step
id: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: ">=18"
- name: install
run: yarn
- name: Run JS linter
run: yarn lint
- name: build
run: yarn build