chore(deps): update dependency flow-bin to v0.245.2 - autoclosed #2566
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: 'Build & Test' | |
on: | |
push: | |
pull_request: | |
branches: [main, umati] | |
jobs: | |
build: | |
name: 'Build (${{ matrix.os }}, Node ${{ matrix.node }})' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- 'ubuntu-latest' | |
node: [18, 20] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci --prefer-offline | |
- name: Build | |
run: npm run build | |
integration: | |
name: 'Integration Tests (${{ matrix.os }}, Node ${{ matrix.node }})' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- 'ubuntu-latest' | |
node: [18, 20] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci --prefer-offline | |
# The integration tests are run with yarn, so we need to install it. | |
- name: Install yarn | |
run: npm i -g yarn | |
- name: Run integration tests | |
run: npm run test:integration | |
# e2e-simple: | |
# name: E2E Simple | |
# uses: ./.github/workflows/e2e-base.yml | |
# with: | |
# testScript: 'tasks/e2e-simple.sh' | |
# e2e-installs: | |
# name: E2E Installs | |
# uses: ./.github/workflows/e2e-base.yml | |
# with: | |
# testScript: 'tasks/e2e-installs.sh' | |
# e2e-kitchensink: | |
# name: E2E Kitchensink | |
# uses: ./.github/workflows/e2e-base.yml | |
# with: | |
# testScript: 'tasks/e2e-kitchensink.sh' |