PostgreSQL設計ガイドライン: 世代管理の改廃について説明を修正 (#55) #100
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: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-and-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Install Packages | |
run: | | |
npm i -f | |
- name: Lint | |
run: | | |
npm run lint | |
- name: Build | |
run: | | |
npm run build |