Skip to content

Commit

Permalink
Switch CI from CircleCI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hexsprite committed Jan 19, 2024
1 parent 377c757 commit a7e768b
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .circleci/config.yml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Node.js CI

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2

- name: Cache node modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
restore-keys: ${{ runner.os }}-node-

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm run test:ci

- name: Upload test results
uses: actions/upload-artifact@v2
if: failure()
with:
name: junit
path: junit.xml

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit a7e768b

Please sign in to comment.