Skip to content

Test workflow

Test workflow #4

Workflow file for this run

name: Format and Lint
on:
pull_request:
branches:
- main
jobs:
format-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '14'
- name: Install Dependencies
run: npm install
- name: Format Code
run: npm run format
- name: Lint Code
run: npm run lint