Merge pull request #34 from joshuaisaact/trip-fix #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: 'npm' | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
id: npm-cache | |
with: | |
path: | | |
**/node_modules | |
~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
if: steps.npm-cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Set environment variables | |
env: | |
SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }} | |
SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | |
TEST_DATABASE_URL: ${{ secrets.TEST_DATABASE_URL }} | |
run: | | |
echo "SUPABASE_ANON_KEY=${SUPABASE_ANON_KEY}" >> $GITHUB_ENV | |
echo "SUPABASE_URL=${SUPABASE_URL}" >> $GITHUB_ENV | |
echo "TEST_DATABASE_URL=${TEST_DATABASE_URL}" >> $GITHUB_ENV | |
echo "DATABASE_URL=${TEST_DATABASE_URL}" >> $GITHUB_ENV | |
- name: Run unit tests with coverage | |
run: npm run test:unit -- --coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |