Skip to content

Do not add double hyphens for pnpm >= 7.0.0 (#413) #73

Do not add double hyphens for pnpm >= 7.0.0 (#413)

Do not add double hyphens for pnpm >= 7.0.0 (#413) #73

Workflow file for this run

name: Build
on:
push:
paths:
- 'src/**'
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v2
with:
node-version: '12'
cache: 'npm'
- name: Installing dependencies
run: npm install
- name: Building
run: npm run build
- name: Committing & pushing
run: |
git config --global user.name 'Jest Coverage Report bot'
git config --global user.email '[email protected]'
git commit -am "Build $(date +'%F %T')"
git push origin main