Skip to content

Fix styling issue with banner on wider screens #58

Fix styling issue with banner on wider screens

Fix styling issue with banner on wider screens #58

Workflow file for this run

# CI workflow
name: CI
on: [ push, pull_request ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
env:
CI: true