chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 #239
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: Continuous Integration | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| main: | |
| name: Build and test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: ".nvmrc" | |
| - name: install system dependencies | |
| run: | | |
| sudo apt-get update && sudo apt-get install -y clang-format cproto git cmake python3 curl libtinfo6 | |
| npm install -g clang-tools-prebuilt | |
| - name: install build tools and build | |
| run: | | |
| git clone https://github.com/emscripten-core/emsdk.git | |
| cd emsdk && ./emsdk install latest && ./emsdk activate latest && source ./emsdk_env.sh && cd .. | |
| npm install | |
| make build | |
| - name: test | |
| run: | | |
| npm test | |
| - name: Run Puppeteer Browser Tests | |
| run: | | |
| export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=false | |
| export PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser | |
| sudo apt-get update && sudo apt-get install -y chromium-browser | |
| npm run test:puppeteer | |
| automerge: | |
| needs: main | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - uses: fastify/github-action-merge-dependabot@v3 |