[WSI] Które z poniższych stwierdzeń są prawdziwe: Instrukcja DELET języka SQL, służy do modyfikacji danych w bazie danych Instrukcja DELET języka SQL, służy do usunięcia danych z bazy danych Instrukcja DELET języka SQL, służy do wstawienia danych do bazy danych Instrukcja DELET języka SQL, służy do odczytania danych z bazy danych #97
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: "Validate JSON files" | |
on: | |
pull_request: | |
branches: | |
- "master" | |
concurrency: | |
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
validate-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: 1.1.17 | |
- name: Install dependencies | |
working-directory: scripts | |
run: bun install | |
- name: Implode overrides | |
working-directory: scripts | |
run: bun run implodeOverrides | |
- name: Implode overrides | |
working-directory: scripts | |
run: bun run validate | |
- name: Validate schema | |
working-directory: scripts | |
run: bun run validate |