-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
986bb50
commit 6db536e
Showing
5 changed files
with
1,444 additions
and
1,525 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Automated Tests | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
jest: | ||
name: Jest Ubuntu | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
DATABASE_URL: ${{ secrets.DATABASE_URL }} | ||
API_KEY: ${{ secrets.API_KEY }} | ||
AUTH_DOMAIN: ${{ secrets.AUTH_DOMAIN }} | ||
PROJECT_ID: ${{ secrets.PROJECT_ID }} | ||
STORAGE_BUCKET: ${{ secrets.STORAGE_BUCKET }} | ||
MESSAGING_SENDER_ID: ${{ secrets.MESSAGING_SENDER_ID }} | ||
APP_ID: ${{ secrets.APP_ID }} | ||
FIREBASE_EMAIL: ${{ secrets.FIREBASE_EMAIL }} | ||
FIREBASE_SENHA: ${{ secrets.FIREBASE_SENHA }} | ||
JWT_KEY: ${{ secrets.JWT_KEY }} | ||
HASH_KEY: ${{ secrets.HASH_KEY }} | ||
EMAIL_USER: ${{ secrets.EMAIL_USER }} | ||
EMAIL_PASSWORD: ${{ secrets.EMAIL_PASSWORD }} | ||
TOKEN: ${{ secrets.TOKEN }} | ||
|
||
|
||
|
||
defaults: | ||
run: | ||
working-directory: ./server | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- run: npm ci | ||
|
||
- run: npm test |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.