Skip to content

Refactor coverage.yml to remove coverage check command #10

Refactor coverage.yml to remove coverage check command

Refactor coverage.yml to remove coverage check command #10

Workflow file for this run

name: Linter
on:
push:
branches:
- main
- developer
pull_request:
branches:
- main
- developer
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20.17.0'
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint