Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fewensa authored Jul 17, 2024
1 parent 9f65e7f commit e0820e8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Check code

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
check-code:
name: Check code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install dependencies
run: npm i

- name: Check build:ts
run: npm run build:Ts

- name: Check test:ts
run: npm run test:Ts

0 comments on commit e0820e8

Please sign in to comment.