Skip to content

Commit

Permalink
Create CItest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
phyuna0525 authored Dec 5, 2024
1 parent d4c9414 commit ec83554
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/CItest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'Continuous Integration'

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
quality:
name: 'CI: Check quality'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Check typescript
run: yarn type:check

- name: Check eslint
run: yarn lint

0 comments on commit ec83554

Please sign in to comment.