Skip to content

Add domain detection to external links and add Jest test. #63

Add domain detection to external links and add Jest test.

Add domain detection to external links and add Jest test. #63

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Run Jest tests
run: npx jest
- name: Run TypeScript typecheck
run: npm run typecheck
- name: Run Prettier
run: npm run prettier