Skip to content

Commit

Permalink
use github actions instead of circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris Cherny committed Oct 17, 2023
1 parent 2da5bab commit e03ccd3
Show file tree
Hide file tree
Showing 3 changed files with 5,744 additions and 5,625 deletions.
30 changes: 0 additions & 30 deletions .circleci/config.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,26 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: [16.x, 17.x, 18.x]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --ignore-engines --verbose
- name: Run tests
run: yarn test
env:
CI: true

0 comments on commit e03ccd3

Please sign in to comment.