Skip to content

Dev

Dev #17

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8.15.4
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
# - uses: actions/cache@v3
# name: Setup pnpm cache
# with:
# path: ${{ env.STORE_PATH }}
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# ${{ runner.os }}-pnpm-store-
- name: Install
run: pnpm install --frozen-lockfile --strict-peer-dependencies
- run: pnpm build
- run: pnpm lint
- run: pnpm prettier
- run: pnpm test:cov
- name: Update Coverage Badge
if: github.ref == format('refs/heads/{0}', dev)

Check failure on line 49 in .github/workflows/ci-workflow.yaml

View workflow run for this annotation

GitHub Actions / CI Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/ci-workflow.yaml (Line: 49, Col: 13): Unrecognized named-value: 'dev'. Located at position 40 within expression: github.ref == format('refs/heads/{0}', dev)
uses: we-cli/coverage-badge-action@main