Skip to content

Fix text overflow and submit on enter #247

Fix text overflow and submit on enter

Fix text overflow and submit on enter #247

Workflow file for this run

name: Run tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3 #Setup Node
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: |
npm ci
- name: Build
run: |
APIKEY=${{ secrets.APIKEY }} npm run build
- name: Run Tests
run: |
APIKEY=${{ secrets.APIKEY }} npm test