Skip to content

Refactor CI configuration and update Node.js setup #2

Refactor CI configuration and update Node.js setup

Refactor CI configuration and update Node.js setup #2

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@v3
with:
node-version: "node"
- name: Install Dependencies
run: npm install --global yarn && yarn install
- name: Lint
run: yarn lint