Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

oauth api path fix (#106) #267

oauth api path fix (#106)

oauth api path fix (#106) #267

Workflow file for this run

name: Tests & Code Quality
on:
push:
tags-ignore:
- '*'
branches-ignore:
- 'master'
- 'main'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.10.0
uses: actions/setup-node@v2
with:
node-version: '16.10.0'
cache: 'npm'
- run: npm ci
- run: npm run lint
unit-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.10.0
uses: actions/setup-node@v2
with:
node-version: '16.10.0'
cache: 'npm'
- run: npm ci
- run: npm run test