Skip to content

chore: remove Dependabot #157

chore: remove Dependabot

chore: remove Dependabot #157

Workflow file for this run

name: CI
on:
workflow_dispatch:
inputs:
git-ref:
description: Git Ref (Optional)
required: false
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, edited, reopened, synchronize]
defaults:
run:
shell: bash
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- name: Checkout (Latest)
if: github.event.inputs.git-ref == ''
uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
- name: Checkout (Custom Ref)
if: github.event.inputs.git-ref != ''
uses: actions/checkout@v2.4.0
with:
ref: ${{ github.event.inputs.git-ref }}
fetch-depth: 0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.5.1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint