Memperbaiki bug formulir sunting pengguna yang tidak ada isinya, merincikan tipe data untuk formulir, dan beberapa restruktur kode #101
Workflow file for this run
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: CI | |
on: pull_request | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: NPM clean install | |
run: npm ci | |
- name: Lint check | |
run: npm run lint | |
# - name: Test | |
# run: npm run test | |
- name: Build | |
run: npm run build |