Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo-Ciber94 committed Oct 16, 2023
2 parents 97ad8ac + 1769757 commit 45fcc9e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

name: CI

on:
workflow_dispatch:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: pnpm/action-setup@v2
with:
version: 8

- name: Install dependencies
run: pnpm install

- name: Check types
run: pnpm typecheck

- name: Linting
run: pnpm lint

0 comments on commit 45fcc9e

Please sign in to comment.