Skip to content

Add relative timestamp to halftime announcement #126

Add relative timestamp to halftime announcement

Add relative timestamp to halftime announcement #126

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Restore CI Cache
uses: actions/cache@v3
id: cache
with:
path: node_modules
key: ${{ runner.os }}-18-${{ hashFiles('**/package-lock.json') }}
- name: Install Dependencies
if: ${{ !steps.cache.outputs.cache-hit }}
run: npm ci
- name: Run build
run: npm run build