DEVEXP-337: e2e tests POC #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: Build and test Sinch Node.js SDK | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# Start the mock server | |
- name: Start the mock server | |
run: | | |
git clone https://asein_sinch:${{ secrets.PAT_CI }}@github.com/sinch/doppelganger.git sinch-sdk-mockserver | |
cd sinch-sdk-mockserver | |
git checkout upgrade-to-typescript | |
yarn install | |
yarn run compile | |
docker-compose up -d | |
# Install dependencies | |
- run: yarn install | |
# Run linter for SDK source files | |
- run: npx eslint "packages/**/src/**/*.ts" | |
# Run linter for SDK test files | |
- run: npx eslint "packages/**/tests/**/*.ts" | |
# Transpile TS code for SDK and examples | |
- run: yarn run build | |
# Run unit tests | |
- run: yarn run test | |
# Run e2e tests | |
- run: yarn run e2e |