Skip to content

Add PUT PATCH DELETE methods (#6) #58

Add PUT PATCH DELETE methods (#6)

Add PUT PATCH DELETE methods (#6) #58

Workflow file for this run

name: Linter
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
- name: npm setup
run: npm install -g npm@latest
- name: Build and lint
run: |
npm install
npm run lint
env:
CI: true