fix: updated jest and soap packages and removed ts-ocpp dependency #61
This file contains hidden or 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: pull_request | |
| jobs: | |
| code: | |
| name: Test code | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Node | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| uses: bahmutov/npm-install@v1 | |
| - name: Run ESLint | |
| run: yarn lint | |
| - name: Run Jest | |
| run: yarn test --coverage |