Skip to content

Bump golang.org/x/net from 0.0.0-20220520000938-2e3eb7b945c2 to 0.7.0 in /cli #10

Bump golang.org/x/net from 0.0.0-20220520000938-2e3eb7b945c2 to 0.7.0 in /cli

Bump golang.org/x/net from 0.0.0-20220520000938-2e3eb7b945c2 to 0.7.0 in /cli #10

Workflow file for this run

name: CLI E2E tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: ["main"]
pull_request:
types: [opened, edited, synchronize]
jobs:
test:
timeout-minutes: 15
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-node
- uses: ./.github/actions/setup-go
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: E2E Tests
run: pnpm -- turbo run e2e --filter=cli
- name: Integration Tests
if: matrix.os != 'windows-latest'
run: pnpm -- turbo run integration-tests --filter=cli