fix(deps): update dependency axios to v1.6.0 #3506
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: | |
lint-test-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: bufbuild/[email protected] | |
with: | |
github_token: ${{ github.token }} | |
- uses: nrwl/nx-set-shas@v3 | |
- run: npm ci | |
- run: npx nx workspace-lint | |
- run: if ! npx nx format:check ; then echo "Format check failed. Please run 'npx nx format:write'."; fi | |
- run: npx nx affected --target=lint --parallel=3 | |
- run: npx nx affected --target=test --parallel=3 --ci --code-coverage | |
- run: npx nx affected --target=build --parallel=3 | |
e2e: | |
runs-on: ubuntu-latest | |
services: | |
flagd: | |
image: ghcr.io/open-feature/flagd-testbed:latest | |
ports: | |
- 8013:8013 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
# we need 'fetch' for this test, which is only in 18+ | |
node-version: 18 | |
cache: 'npm' | |
- name: Install | |
run: npm ci | |
- uses: bufbuild/[email protected] | |
with: | |
github_token: ${{ github.token }} | |
- name: e2e | |
run: npm run e2e |