Skip to content

Added a check for whether or not a git repository exists, and option … #14

Added a check for whether or not a git repository exists, and option …

Added a check for whether or not a git repository exists, and option … #14

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test