Skip to content

Bump cross-spawn from 7.0.3 to 7.0.6 in /packages/stitch #1303

Bump cross-spawn from 7.0.3 to 7.0.6 in /packages/stitch

Bump cross-spawn from 7.0.3 to 7.0.6 in /packages/stitch #1303

Workflow file for this run

name: Apollo CI
on:
pull_request:
branches:
- main
- experimental
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