Skip to content

chore(deps): bump ip from 2.0.0 to 2.0.1 #12

chore(deps): bump ip from 2.0.0 to 2.0.1

chore(deps): bump ip from 2.0.0 to 2.0.1 #12

Workflow file for this run

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 }}