This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
Upgrade Allure #63
Workflow file for this run
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: CI | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Install dependencies | |
run: yarn | |
- name: Update API reports | |
run: mkdir -p api && yarn api-extractor run --local | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update API report as of ${{ github.sha }} | |
file_pattern: api | |
commit_user_name: rebasecop | |
commit_user_email: [email protected] | |
commit_author: rebasecop <[email protected]> |