Skip to content

chore(deps): bump the npm_and_yarn group across 1 directory with 2 up… #167

chore(deps): bump the npm_and_yarn group across 1 directory with 2 up…

chore(deps): bump the npm_and_yarn group across 1 directory with 2 up… #167

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
actions: read
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn nx affected -t lint
build:
needs: ["lint"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn nx affected -t build
test:
needs: ["build"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn nx affected -t test
e2e:
needs: ["build","test"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn nx affected -t e2e