Update deps 2026 03 11 #222
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: | |
| push: | |
| branches: | |
| - master | |
| # - 'releases/*' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: make install | |
| - run: make test | |
| - run: make lint | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: make install | |
| - run: node server.js & | |
| - uses: ./ | |
| env: | |
| NODE_DEBUG: http | |
| ACTION_API_HOST: http://localhost:3000 | |
| ACTION_PROJECT_PATH: __fixtures__/project_source | |
| with: | |
| hexlet-id: 1 | |
| verbose: true | |
| artifacts: | |
| needs: e2e | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: test-results | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: test-data |