Skip to content

πŸ‘· update Github action #12

πŸ‘· update Github action

πŸ‘· update Github action #12

Workflow file for this run

name: CI Workflow
on:
pull_request:
branches: '**'
workflow_dispatch:
jobs:
init:
name: Initial common steps
runs-on: ubuntu-latest
steps:
- name: πŸ›ŽοΈ Checkout
uses: actions/checkout@v3
- name: βš™οΈ Setup PNPM
uses: pnpm/action-setup@v2.2.1
with:
version: 8
- name: πŸ“ Cache dependencies
id: cache-deps
uses: actions/cache@v3
with:
path: node_modules
key: deps-node-modules-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: πŸ”§ Install dependencies
if: steps.cache-deps.outputs.cache-hit != 'true'
run: pnpm install --frozen-lockfile
test:
name: Test Coverage
runs-on: ubuntu-latest
environment: Test
timeout-minutes: 10
needs: init
- name: πŸ›ŽοΈ Checkout

Check failure on line 40 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 40
uses: actions/checkout@v3
- name: βš™οΈ Setup PNPM
uses: pnpm/action-setup@v2.2.1
with:
version: 8
- name: πŸ“ Cache dependencies
id: cache-deps
uses: actions/cache@v3
with:
path: node_modules
key: deps-node-modules-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: πŸ”§ Install dependencies
if: steps.cache-deps.outputs.cache-hit != 'true'
run: pnpm install --frozen-lockfile
- name: πŸ§ͺ Test Coverage
run: pnpm test:coverage
- name: πŸ“ˆ Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true