Skip to content

add github actions and fixed lint issues #17

add github actions and fixed lint issues

add github actions and fixed lint issues #17

Workflow file for this run

name: Automated Tests
on: pull_request
jobs:
jest:
name: Jest Ubuntu
runs-on: ubuntu-latest
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
TOKEN: ${{ secrets.TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm test