Skip to content

Commit

Permalink
Moving to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
starak committed Apr 15, 2024
1 parent 71f0129 commit 47ba5dc
Show file tree
Hide file tree
Showing 4 changed files with 2,703 additions and 9,256 deletions.
21 changes: 0 additions & 21 deletions .circleci/config.yml

This file was deleted.

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

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
Loading

0 comments on commit 47ba5dc

Please sign in to comment.