chore(deps): update dependency eslint to v9 #598
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: Threema For Desktop CI for Pull Requests | |
on: | |
- pull_request | |
jobs: | |
CIPR: | |
name: CI for Pull Requests | |
runs-on: ${{ matrix.os }} | |
continue-on-error: false | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
steps: | |
- name: Cloning and checking the repository with Git | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
- name: Inject metadata in npmrc | |
run: | | |
echo "node-linker=hoisted" >> .npmrc | |
- name: Install and setup Node.JS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
check-latest: true | |
- name: Setup PNPM | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Install dependances to see if there is any issue | |
run: pnpm install --frozen-lockfile | |
- name: Run tsc, to check if there is error with code | |
run: pnpm tsc | |
- name: Running test build of app | |
run: pnpm build | |
env: | |
GH_TOKEN: ${{ secrets.github_token }} | |
- name: Upload arteficts to Actions log | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ runner.os }}-artifacts | |
path: | | |
build-binaries/** |