mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-27 15:22:56 +08:00
18 lines
269 B
YAML
18 lines
269 B
YAML
name: Verify
|
|
|
|
# Run action only on pull requests
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Verify Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check Lint
|
|
run: npm run lint
|
|
- name: Build
|
|
run: npm run build
|