Skip to content

build(deps-dev): bump eslint-config-prettier from 9.1.0 to 10.0.1 #673

build(deps-dev): bump eslint-config-prettier from 9.1.0 to 10.0.1

build(deps-dev): bump eslint-config-prettier from 9.1.0 to 10.0.1 #673

Workflow file for this run

name: 'Continuous Integration'
on:
pull_request:
branches:
- main
- integration/dependabot
workflow_dispatch:
jobs:
Build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: '0'
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node-version }}
- name: Check cache
uses: actions/cache@v2
id: node-cache
with:
path: '**/node_modules'
key: ubuntu-latest-node-modules-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
- name: Install node modules
if: steps.node-cache.outputs.cache-hit != 'true'
run: npm ci
env:
CI: true
- name: Build affected apps
uses: mansagroup/nrwl-nx-action@v3
with:
targets: lint,test,build
affected: 'true'