This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
build(deps-dev): bump @typescript-eslint/parser from 7.0.2 to 7.3.0 #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-Pipeline | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
- 'main' | |
- 'release/*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
# - uses: pnpm/action-setup@v3 | |
# with: | |
# run_install: false | |
# version: 8 | |
# - uses: actions/setup-node@v4 | |
# with: | |
# cache: pnpm | |
# node-version: 20 | |
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
# cache: pnpm | |
node-version: 20 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
id: pnpm-install | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store | |
restore-keys: | | |
${{ runner.os }}-pnpm-store | |
- name: Install | |
run: pnpm i | |
- name: Unused | |
run: pnpm -r unused | |
- name: Format | |
run: pnpm -r format | |
- name: Build | |
run: pnpm -r build | |
- name: Lint | |
run: pnpm -r lint | |
- name: Test | |
continue-on-error: true # fixme: remove this line | |
run: pnpm test | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
name: Upload theme test reports | |
with: | |
name: reports | |
path: | | |
packages/themes/**/test-results/**/*.png | |
!**/node_modules |