Skip to content

Update README.md to mention cloning as first step #101

Update README.md to mention cloning as first step

Update README.md to mention cloning as first step #101

Workflow file for this run

name: Lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) && !contains(github.event.head_commit.message, '[ci skip]')
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install Node Package Dependencies
run: npm i
- name: Lint
run: npm run lint