Skip to content

Commit 0bce1cf

Browse files
committed
chore: replace circleci with github actions
1 parent 9c700f4 commit 0bce1cf

File tree

2 files changed

+15
-26
lines changed

2 files changed

+15
-26
lines changed

.circleci/config.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/checks.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Checks
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
release:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v3
11+
- run : npm ci
12+
- name: Lint
13+
run: npm run -s lint
14+
- name: Typecheck
15+
run: npm run -s typecheck

0 commit comments

Comments
 (0)