Skip to content

Commit

Permalink
build: switch to github actions
Browse files Browse the repository at this point in the history
Signed-off-by: Marie JONES <14836007+marie-j@users.noreply.github.com>
  • Loading branch information
marie-j committed Jun 28, 2024
1 parent 06d61af commit 990046a
Show file tree
Hide file tree
Showing 4 changed files with 4,582 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/node-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: NodeJS Test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]

steps:
- uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Restore/create node_modules cache
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install
run: npm install
- name: Test
run: npm run test
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @ovh/su-developer-platform-api-exposition
Loading

0 comments on commit 990046a

Please sign in to comment.