Add checks
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
dbd9221931
commit
cc0020cf09
1 changed files with 31 additions and 0 deletions
31
.github/workflows/check.yml
vendored
Normal file
31
.github/workflows/check.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
name: Checks
|
||||
|
||||
on:
|
||||
workflow_dispatch: {}
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
|
||||
jobs:
|
||||
checks:
|
||||
name: Checks
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
|
||||
- name: Dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Format
|
||||
run: npm run format
|
||||
|
||||
- name: Test
|
||||
run: npm run build
|
Loading…
Add table
Reference in a new issue