Skip to content

Commit

Permalink
add codacy upload
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaMulein committed Oct 18, 2024
1 parent 490a87d commit d619ed0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test-and-upload-codacy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test and Upload to Codacy

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test-and-upload:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install dependencies
run: yarn install

- name: Run tests and upload to Codacy
env:
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
run: yarn test:jest:upload-codacy

0 comments on commit d619ed0

Please sign in to comment.