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

Upgrade deps

Upgrade deps #421

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [master]
pull_request:
branches: [master]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
env:
cache-name: cache-node-modules-v3
with:
path: ~/.local/share/pnpm/store
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package.json') }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install pnpm
run: npm i -g pnpm
- name: Install dependencies
run: pnpm install
- name: Build the project
env:
RUNZ_TEST_RUNNER: ts-jest
run: pnpm ci:all
- name: Upload coverage report
env:
CODACY_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
if: ${{ env.CODACY_TOKEN }}
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ env.CODACY_TOKEN }}
coverage-reports: target/coverage/lcov.info