Merge pull request #115 from evgenyneu/feature/107-unsubscribe-from-e… #289
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: Linting | |
on: [push, pull_request] | |
env: | |
PUBLIC_SUPABASE_URL: "https://fake_test_url.supabase.co" | |
PUBLIC_SUPABASE_ANON_KEY: "fake_anon_key" | |
PRIVATE_SUPABASE_SERVICE_ROLE: "fake_service_role" | |
PRIVATE_STRIPE_API_KEY: "fake_strip_api_key" | |
jobs: | |
build_and_test: | |
name: Linting and Typechecking | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: NPM install | |
run: npm install | |
- name: Linting | |
run: npm run lint | |
- name: Typechecking | |
run: npm run check |