This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
[Snyk] Security upgrade axios from 1.3.4 to 1.6.4 #86
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: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: yarn | |
- name: Create empty .env | |
run: touch .env | |
- name: Run jest | |
run: yarn test --coverage | |
env: | |
QIWI_TOKEN: ${{ secrets.QIWI_TOKEN }} | |
QIWI_WALLET: ${{ secrets.QIWI_WALLET }} | |
QIWI_SECRET_KEY: ${{ secrets.QIWI_PK }} | |
QIWI_PUBLIC_KEY: ${{ secrets.QIWI_PUBK }} | |
- name: Upload coverage to Codecov | |
run: npx codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload coverage to Codacy | |
run: bash <(curl -Ls https://coverage.codacy.com/get.sh) | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} |