Skip to content

chore(deps): bump nanoid from 3.1.30 to 3.3.8 #103

chore(deps): bump nanoid from 3.1.30 to 3.3.8

chore(deps): bump nanoid from 3.1.30 to 3.3.8 #103

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
main:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
env:
NX_CLOUD_AUTH_TOKEN: ${{ secrets.NX_CLOUD_AUTH_TOKEN }}
steps:
- uses: actions/checkout@v2
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@v1
with:
node-version: '16'
- uses: bahmutov/npm-install@v1
- run: npm -g i firebase-tools
- run: npx nx format:check
- run: npx nx affected --target=build --parallel --max-parallel=3
- run: npx nx affected --target=lint --parallel --max-parallel=3
- run: npx nx affected --target=test --parallel --max-parallel=2
- run: npx nx affected --target=build --all --max-parallel=3
- run: npx nx affected --target=e2e
pr:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
env:
NX_CLOUD_AUTH_TOKEN: ${{ secrets.NX_CLOUD_AUTH_TOKEN }}
steps:
- uses: actions/checkout@v2
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@v1
with:
node-version: '16'
- uses: bahmutov/npm-install@v1
- run: npm -g i firebase-tools
- run: npx nx format:check
- run: npx nx affected --target=build --parallel --max-parallel=3
- run: npx nx affected --target=lint --parallel --max-parallel=3
- run: npx nx affected --target=test --parallel --max-parallel=2
- run: npx nx affected --target=build --all --max-parallel=3
- run: npx nx affected --target=e2e