Skip to content

refactor: release 2024-03-19 for init #1

refactor: release 2024-03-19 for init

refactor: release 2024-03-19 for init #1

name: quality-check
on: [push]
jobs:
accessibility-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Run accessibility check
run: npm run a11y.check ./dist
- name: Upload accessibility check results
uses: actions/upload-artifact@v4
with:
name: accessibility-check-results
path: accessibility-check-results
code-formatting-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run format check
run: npm run fmt.check
code-quality-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run lint check
run: npm run lint