Skip to content

Create CNAME

Create CNAME #12

Workflow file for this run

name: ESLint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3 # Updated to v3
- name: ESLint
uses: actions/setup-node@v3 # Updated to v3
with:
node-version: '16' # Update to a non-deprecated version (Node 16 or later)
- run: npm ci
- run: npm run eslint