fix traces #358
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
static: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup deps | |
uses: ./.github/actions/setup-deps | |
- name: Lint | |
run: npm run lint | |
- name: Check format | |
run: npm run check-format | |
- name: Check types | |
run: npm run check-types | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup deps | |
uses: ./.github/actions/setup-deps | |
- name: Build | |
run: npm run build | |
- name: Upload "@argos-ci/util" dist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: util-dist | |
path: packages/util/dist | |
- name: Upload "@argos-ci/cli" dist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cli-dist | |
path: packages/cli/dist | |
- name: Upload "@argos-ci/core" dist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: core-dist | |
path: packages/core/dist | |
- name: Upload "@argos-ci/browser" dist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: browser-dist | |
path: packages/browser/dist | |
- name: Upload "@argos-ci/playwright" dist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playwright-dist | |
path: packages/playwright/dist | |
- name: Upload "@argos-ci/cypress" dist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cypress-dist | |
path: packages/cypress/dist | |
- name: Upload "@argos-ci/puppeteer" dist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: puppeteer-dist | |
path: packages/puppeteer/dist | |
unit: | |
needs: ["build"] | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16, 18, 20] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup deps | |
uses: ./.github/actions/setup-deps | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Download "@argos-ci/util" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: util-dist | |
path: packages/util/dist | |
- name: Download "@argos-ci/cli" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: cli-dist | |
path: packages/cli/dist | |
- name: Download "@argos-ci/core" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: core-dist | |
path: packages/core/dist | |
- name: Test | |
run: npm run test | |
e2e-core: | |
needs: ["build"] | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16, 18, 20] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup deps | |
uses: ./.github/actions/setup-deps | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Download "@argos-ci/util" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: util-dist | |
path: packages/util/dist | |
- name: Download "@argos-ci/cli" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: cli-dist | |
path: packages/cli/dist | |
- name: Download "@argos-ci/core" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: core-dist | |
path: packages/core/dist | |
- name: Run integration tests | |
run: pnpm --filter core --filter cli run e2e | |
env: | |
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }} | |
NODE_VERSION: ${{ matrix.node-version }} | |
OS: ${{ matrix.os }} | |
e2e-cypress: | |
needs: ["build"] | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [current] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup deps | |
uses: ./.github/actions/setup-deps | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Cypress | |
run: pnpm --filter cypress exec cypress install | |
- name: Download "@argos-ci/util" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: util-dist | |
path: packages/util/dist | |
- name: Download "@argos-ci/cli" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: cli-dist | |
path: packages/cli/dist | |
- name: Download "@argos-ci/core" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: core-dist | |
path: packages/core/dist | |
- name: Download "@argos-ci/browser" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: browser-dist | |
path: packages/browser/dist | |
- name: Download "@argos-ci/cypress" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: cypress-dist | |
path: packages/cypress/dist | |
- name: Run integration tests | |
run: pnpm --filter cypress run e2e | |
env: | |
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }} | |
NODE_VERSION: ${{ matrix.node-version }} | |
OS: ${{ matrix.os }} | |
e2e-playwright: | |
needs: ["build"] | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [current] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup deps | |
uses: ./.github/actions/setup-deps | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup Playwright | |
run: pnpm --filter playwright exec playwright install chromium --with-deps | |
- name: Download "@argos-ci/util" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: util-dist | |
path: packages/util/dist | |
- name: Download "@argos-ci/cli" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: cli-dist | |
path: packages/cli/dist | |
- name: Download "@argos-ci/core" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: core-dist | |
path: packages/core/dist | |
- name: Download "@argos-ci/browser" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: browser-dist | |
path: packages/browser/dist | |
- name: Download "@argos-ci/playwright" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: playwright-dist | |
path: packages/playwright/dist | |
- name: Run integration tests | |
run: pnpm --filter playwright run e2e | |
env: | |
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }} | |
NODE_VERSION: ${{ matrix.node-version }} | |
OS: ${{ matrix.os }} | |
e2e-puppeteer: | |
needs: ["build"] | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [current] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup deps | |
uses: ./.github/actions/setup-deps | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup Puppeteer | |
run: node packages/puppeteer/node_modules/puppeteer/install.mjs | |
- name: Download "@argos-ci/util" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: util-dist | |
path: packages/util/dist | |
- name: Download "@argos-ci/cli" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: cli-dist | |
path: packages/cli/dist | |
- name: Download "@argos-ci/core" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: core-dist | |
path: packages/core/dist | |
- name: Download "@argos-ci/browser" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: browser-dist | |
path: packages/browser/dist | |
- name: Download "@argos-ci/puppeteer" dist | |
uses: actions/download-artifact@v3 | |
with: | |
name: puppeteer-dist | |
path: packages/puppeteer/dist | |
- name: Run integration tests | |
run: pnpm --filter puppeteer run e2e | |
env: | |
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }} | |
NODE_VERSION: ${{ matrix.node-version }} | |
OS: ${{ matrix.os }} |