Bump the minor-and-patch group across 2 directories with 16 updates #1488
Workflow file for this run
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: Run Tests | |
env: | |
INDEXER_URL: ${{ secrets.INDEXER_URL }} | |
on: [pull_request] | |
jobs: | |
test-ci: | |
name: test | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.45.3-jammy | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: npm install -g yarn && yarn | |
- run: yarn setup | |
- run: yarn build:freighter-api | |
- run: yarn build:extension | |
- run: yarn test:ci |