Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

chore(deps): update dependency typescript to v5.3.2 #1427

chore(deps): update dependency typescript to v5.3.2

chore(deps): update dependency typescript to v5.3.2 #1427

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Main job
permissions:
contents: 'read'
actions: 'read'
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2.4.0
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
- name: nx workspace lint
run: pnpx nx workspace-lint
# - name: nx format check
# run: pnpx nx format:check
- name: Run build
run: pnpm run nx:build
- name: Run lint
run: pnpm run nx:lint
- name: Run tests
run: pnpm run --parallel test