chore(deps): bump undici from 5.28.2 to 5.28.3 #11
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: | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
nx: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'npm' | |
- uses: nrwl/nx-set-shas@v3 | |
with: | |
main-branch-name: ${{github.base_ref}} | |
- run: npm ci | |
- name: Check changesets | |
if: github.base_ref == 'develop' | |
run: npx changeset status --since=origin/develop | |
- run: npx nx workspace-lint | |
- run: npx nx format:check | |
- run: npx nx affected --target=lint --parallel=3 | |
- run: | | |
npx nx affected --target=test --configuration=ci | |
- run: npx nx affected --target=docker-build | |
docker-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: lint | |
uses: luke142367/[email protected] | |
with: | |
target: $(find . -name *Dockerfile | tr '\n' ' ') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |