Skip to content

Commit

Permalink
ci: use github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Oct 15, 2022
1 parent 674680f commit 1ca7c1d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 94 deletions.
94 changes: 0 additions & 94 deletions .circleci/config.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,28 @@
name: 'ci'
on:
push:
branches:
- '**'
pull_request:
branches:
- main

permissions:
contents: read # to fetch code (actions/checkout)

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set node version to 16
uses: actions/setup-node@v2
with:
node-version: 16

- name: Install deps
uses: bahmutov/npm-install@v1

- name: Run tests
run: npm test

0 comments on commit 1ca7c1d

Please sign in to comment.