Skip to content

Release 1.2.0

Release 1.2.0 #38

Workflow file for this run

name: Lint
on: [ push, pull_request ]
env:
CI: true
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18 ]
steps:
- uses: actions/checkout@v3
name: Checkout Code
with:
fetch-depth: 1
- uses: actions/setup-node@v3
name: Use Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: Lint using eslint
run: npm run lint