Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
push:

jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ "lts/*", latest]
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: ${{matrix.node-version}}
- run: npm install
- run: bash sample_code_runner.sh
- run: cat output.log
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Node.js Sample Code for the CyberSource SDK

[![Build Status](https://app.travis-ci.com/CyberSource/cybersource-rest-samples-node.svg?branch=master)](https://app.travis-ci.com/CyberSource/cybersource-rest-samples-node)

This repository contains working code samples which demonstrate Node.js integration with the CyberSource REST APIs through the [CyberSource Node.JS SDK](https://github.com/CyberSource/cybersource-rest-client-node).

The samples are organized into categories and common usage examples.
Expand Down