Skip to content

Commit

Permalink
ci: move to GitHub actions (vercel#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuler authored and himanshiLt committed Apr 28, 2022
1 parent 306404f commit 37d4e4d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 15 deletions.
6 changes: 0 additions & 6 deletions .circleci/Dockerfile

This file was deleted.

7 changes: 0 additions & 7 deletions .circleci/config.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .dockerignore

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
- 14
- 12
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit 37d4e4d

Please sign in to comment.