Skip to content

Commit

Permalink
chore: replace circleci with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MKRhere committed Sep 19, 2023
1 parent 9c700f4 commit 0bce1cf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .circleci/config.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Checks

on: [push, pull_request]

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- run : npm ci
- name: Lint
run: npm run -s lint
- name: Typecheck
run: npm run -s typecheck

0 comments on commit 0bce1cf

Please sign in to comment.