Skip to content

Commit

Permalink
chore: replace circleci testing with github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoliver committed Mar 20, 2024
1 parent 96cd9c0 commit a6dcd44
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 31 deletions.
31 changes: 0 additions & 31 deletions .circleci/config.yml

This file was deleted.

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

on:
pull_request:
branches:
- master

jobs:
npm-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
- name: install & test
run: npm cit

0 comments on commit a6dcd44

Please sign in to comment.