add หมออนามัย - ปอยฝ้าย มาลัยพร #221
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: Check Format | |
on: | |
pull_request: | |
paths: | |
- "README.md" | |
push: | |
paths: | |
- "README.md" | |
jobs: | |
formats: | |
name: Check Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Node v16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn run build:ci | |
- name: Run Check Format | |
run: yarn run test:format |