Skip to content

Update template

Update template #75

Workflow file for this run

name: linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: linting
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Setup Node.js
uses: actions/setup-node@v3
with:
always-auth: false
node-version: 18.x
cache: 'npm'
- name: Run npm install
run: npm install --ignore-scripts
- name: Run lint
run: npm run lint