Skip to content

Bump github.com/docker/docker from 26.1.4+incompatible to 26.1.5+incompatible in /packages/fabric-deployer #1261

Bump github.com/docker/docker from 26.1.4+incompatible to 26.1.5+incompatible in /packages/fabric-deployer

Bump github.com/docker/docker from 26.1.4+incompatible to 26.1.5+incompatible in /packages/fabric-deployer #1261

Workflow file for this run

name: Apollo CI
on:
pull_request:
branches: [ main ]
defaults:
run:
working-directory: ./packages/apollo
shell: bash
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm ci --legacy-peer-deps
- run: npm run lint
audit:
name: NPM Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm audit --production
build-code:
name: Build code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm ci --legacy-peer-deps
- run: npm run build
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm ci --legacy-peer-deps
- run: npm test