Skip to content

Refactor CI configuration and add linting step #1

Refactor CI configuration and add linting step

Refactor CI configuration and add linting step #1

Workflow file for this run

on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Install Dependencies
run: npm install yarn -g && yarn install
- name: Lint
run: yarn lint