diff --git a/.github/workflows/test-and-upload-codacy.yml b/.github/workflows/test-and-upload-codacy.yml new file mode 100644 index 0000000..db5b633 --- /dev/null +++ b/.github/workflows/test-and-upload-codacy.yml @@ -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