Skip to content

make voices scrollable in mobile view #1

make voices scrollable in mobile view

make voices scrollable in mobile view #1

Workflow file for this run

name: Build
on:
# Run the build for pushes and pull requests targeting main
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.19.1']
steps:
- name: Checkout
uses: actions/checkout@v3
# Setup Node
- name: Setup (Node.js ${{ matrix.node-version }})
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# Install
- name: Install
run: npm ci
# Checks
# - name: Lint
# run: npm run lint
# Test
# - name: Test
# run: npm test
# Build
- name: Build
run: npm run build