Skip to content

Commit

Permalink
chore(ci): replace circleci with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bigopon committed Sep 26, 2021
1 parent 8f0bbce commit 1877d0a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 56 deletions.
56 changes: 0 additions & 56 deletions .circleci/config.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Github Actions
on: [push]
env:

jobs:
node:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci
- run: npm test

0 comments on commit 1877d0a

Please sign in to comment.