Skip to content

[WIP] Update DNS verification code #31

[WIP] Update DNS verification code

[WIP] Update DNS verification code #31

Workflow file for this run

name: CI
on:
push:
branches: [ main, Dreadwitdastacc-Ifawole, feat/testcontainers-cloud-check ]
pull_request:
branches: [ main, Dreadwitdastacc-Ifawole ]
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read # for actions/checkout
steps:
- uses: actions/checkout@v5
with:
lfs: true
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install
run: npm ci
- name: Lint code
run: npm run lint:check
- name: Check formatting
run: npm run format:check
- name: Run tests
run: npx vitest run --reporter dot
- name: Build
run: npm run build