Skip to content

Feat: add remove instant from the dom without fetch, and authorId in … #16

Feat: add remove instant from the dom without fetch, and authorId in …

Feat: add remove instant from the dom without fetch, and authorId in … #16

Workflow file for this run

name: CI
on: push
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install Dependencies
run: npm install
- name: Run Linter
run: npm run lint
# - name: Run Unit Tests
# run: npm run test
- name: Create Pull Request
if: github.event_name == 'push' && github.ref == 'refs/heads/feature/**'
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Automated PR - ${{ github.event.head_commit.message }}"
title: "Automated PR: ${{ github.event.head_commit.message }}"
body: "${{ github.event.head_commit.message }}"
branch: "ci-autopr-${{ github.run_id }}"
base: main