Skip to content

Commit

Permalink
chore: remove CircleCI & use Github Action instead (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamDASILVA authored Feb 24, 2023
1 parent f804f1a commit ff3e5c9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 42 deletions.
42 changes: 0 additions & 42 deletions .circleci/config.yml

This file was deleted.

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

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test

0 comments on commit ff3e5c9

Please sign in to comment.