Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

feat: supporting oauth #98

feat: supporting oauth

feat: supporting oauth #98

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- lts/-1
- lts/*
- latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
run: npm ci
- name: Build dist
run: npm run build
- name: Run tests
run: npm test