Skip to content

Commit

Permalink
ci: refactor ci plan
Browse files Browse the repository at this point in the history
  • Loading branch information
hywax committed Feb 1, 2024
1 parent 540e0a6 commit 12bf943
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/lint.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
name: Run Linters
name: CI

on:
push:
paths-ignore:
- "docs/**"
- ".md"
branches:
- main
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
branches:
- main

jobs:
lint:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
Expand All @@ -30,3 +39,6 @@ jobs:

- name: Types
run: yarn run typecheck

- name: Build
run: yarn run build

0 comments on commit 12bf943

Please sign in to comment.