Skip to content

Commit

Permalink
Merge pull request #61 from scaleway/feature/secret-path
Browse files Browse the repository at this point in the history
Secret path
  • Loading branch information
luxifer authored Oct 17, 2023
2 parents d5731c6 + 51a0ddf commit 7e25cfa
Show file tree
Hide file tree
Showing 11 changed files with 5,984 additions and 1,583 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Tests

on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:

jobs:
tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set Node.js 16.x
uses: actions/[email protected]
with:
node-version: 16.x

- name: Install dependencies
run: npm ci

- name: Run tests
run: |
npm test
7 changes: 7 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extension": [
"ts"
],
"spec": "src/**/*.spec.ts",
"require": "ts-node/register"
}
Loading

0 comments on commit 7e25cfa

Please sign in to comment.