Create verify.yml

This commit is contained in:
Aykut Saraç 2023-02-11 19:25:38 +03:00 committed by GitHub
parent 13aaa81d9a
commit 80ca1a38ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/verify.yml vendored Normal file
View File

@ -0,0 +1,17 @@
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