build(deps): bump undici from 5.28.4 to 5.28.5 in the npm_and_yarn group across 1 directory #115
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" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: npm | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run Biome (format + lint + import sorting) | |
run: npm run biome:ci | |
- name: Build | |
run: npm run build | |
- name: Validate dist | |
run: | | |
git diff | |
exit $(git status --porcelain | wc -l) | |
tests: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: npm | |
- name: Install Dependencies | |
run: npm ci | |
- name: run tests | |
run: npm run test:ci | |
otel-cicd: | |
needs: [tests, build] | |
if: always() | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Export workflow | |
uses: ./ | |
with: | |
otlpEndpoint: "test" | |
otlpHeaders: "test" | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
OTEL_CONSOLE_ONLY: "true" # Internal flag used to disable sending data to the collector |