chore: Add support for running tests & prettier in CI #14
Workflow file for this run
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
| # Workflow for running automated tests. | |
| name: WebdriverIO Tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| timeout-minutes: 10 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - name: Checkout experimentation plugin | |
| uses: actions/checkout@v4 | |
| with: | |
| path: main | |
| - name: Checkout core Blockly | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: 'google/blockly' | |
| ref: 'rc/v12.0.0' | |
| path: core-blockly | |
| - name: Use Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: NPM install | |
| run: | | |
| cd main | |
| npm install | |
| cd .. | |
| cd core-blockly | |
| npm install | |
| cd .. | |
| - name: Link latest Blockly v12 | |
| run: | | |
| cd core-blockly | |
| npm run package | |
| cd dist | |
| npm link | |
| cd ../../main | |
| npm link blockly | |
| cd .. | |
| - name: Run tests | |
| run: | | |
| cd main | |
| npm run test |