Skip to content

Update readme

Update readme #3

Workflow file for this run

name: main
# This workflow is triggered on pushes to the repository.
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
build:
# Job name is Greeting
name: Check
# This job runs on Linux
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'current' # This step prints an output (time) from the previous step's action.
- run: npm install
- name: Validate
uses: ./
with:
github_token: ${{ github.token }}