Skip to content

Add plastic badge style #8

Add plastic badge style

Add plastic badge style #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- run: yarn install --frozen-lockfile
- run: yarn run build
- name: Run git push
run: |
git config --global user.email "bot@therealsuji.tk"
git config --global user.name "earphone-jack"
git add --all
git commit -m "Build output for commit $GITHUB_SHA" || true
git push