Skip to content

Refactor AnimatedCounter component for improved readability #16

Refactor AnimatedCounter component for improved readability

Refactor AnimatedCounter component for improved readability #16

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run build
env:
GH_PAT: ${{ secrets.GH_PAT }}
AIRTABLE_PAT: ${{ secrets.AIRTABLE_PAT }}
AIRTABLE_BASE_ID: ${{ secrets.AIRTABLE_BASE_ID }}