Skip to content

Commit

Permalink
Merge pull request #33 from clay/gha
Browse files Browse the repository at this point in the history
CPSRE-1161: Migrate clay/clay-log CI to GHA
  • Loading branch information
Robin Aguilar authored May 2, 2023
2 parents c8f6472 + d51caaa commit 6995a39
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .circleci/config.yml

This file was deleted.

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

on:
push:

jobs:
test_node_10:
name: Test node 10
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Setup Node10.x
uses: actions/setup-node@v3
with:
node-version: '10.x'
-
run: npm ci
-
run: npm test

test_node_12:
name: Test node 12
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Setup Node12.x
uses: actions/setup-node@v3
with:
node-version: '12.x'
-
run: npm ci
-
run: npm test

0 comments on commit 6995a39

Please sign in to comment.