ci: 🎡 run separate E2E tests on different ports #7
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: Node.js CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
release: | |
if: | |
${{ github.event_name == 'push' && (github.event.ref == 'refs/heads/master' || github.event.ref == 'refs/heads/next') }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- run: yarn prettier:check | |
- run: yarn lint | |
- run: yarn test:ci --ci | |
- run: PORT=10000 yarn test:e2e --server http1 --suite sample-api | |
- run: PORT=10001 yarn test:e2e --server uws --suite sample-api | |
- run: PORT=10002 yarn test:e2e --server http1 --suite json-crdt-server | |
- run: PORT=10003 yarn test:e2e --server uws --suite json-crdt-server | |
- run: yarn build | |
- name: Semantic Release | |
uses: cycjimmy/semantic-release-action@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |