Skip to content

feat(actions): add lint and changelog #1

feat(actions): add lint and changelog

feat(actions): add lint and changelog #1

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Node.js dependencies
run: yarn
- name: Run ESLint/Flow/Prettier
run: yarn lint