test(ci): cover spritz local smoke (#224) #15
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: e2e-unit-tests | |
| on: | |
| pull_request: | |
| paths: | |
| - "e2e/**" | |
| - ".github/workflows/e2e-unit-tests.yml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "e2e/**" | |
| - ".github/workflows/e2e-unit-tests.yml" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Run e2e unit tests | |
| run: node --test e2e/*.test.mjs | |
| - name: Check ACP smoke scripts | |
| run: | | |
| node --check e2e/acp-smoke-lib.mjs | |
| node --check e2e/acp-client.mjs | |
| node --check e2e/instance-waiter.mjs | |
| node --check e2e/acp-smoke.mjs |