Skip to content

chore(deps): update dependency @types/cron to v2 #438

chore(deps): update dependency @types/cron to v2

chore(deps): update dependency @types/cron to v2 #438

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
main:
runs-on: [self-hosted, nx]
if: ${{ github.event_name != 'pull_request' }}
steps:
- uses: actions/checkout@v3
name: Checkout [main]
with:
fetch-depth: 0
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v2
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm ci --no-progress
- run: npx nx affected --target=build --parallel --max-parallel=3
# - run: npx nx affected --target=test --parallel --max-parallel=2
pr:
runs-on: [self-hosted, nx]
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v2
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm ci --no-progress
- run: npx nx affected --target=build --parallel --max-parallel=3
# - run: npx nx affected --target=test --parallel --max-parallel=2