Skip to content

Commit

Permalink
chore: rename some things
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps committed Dec 3, 2023
1 parent 29f45d9 commit 2b0eb65
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml → .github/workflows/lint-sdks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: SDKs
name: Lint SDKs
on:
push:
branches:
Expand All @@ -12,7 +12,7 @@ jobs:
steps:
- name: Checkout Sources
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
with:
Expand All @@ -22,20 +22,20 @@ jobs:
uses: snok/install-poetry@v1
with:
version: 1.7.0

- name: Lint Python source
working-directory: flipt-client-python
run: |
poetry install
poetry run black --check .
lint-typescript:
name: Lint Typescript
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4

- name: Install Node
uses: actions/setup-node@v4
with:
Expand All @@ -45,4 +45,4 @@ jobs:
working-directory: flipt-client-node
run: |
npm ci
npm run prettier-check
npm run lint
10 changes: 5 additions & 5 deletions .github/workflows/test.yml → .github/workflows/test-sdks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests
name: Test SDKs
on:
push:
branches:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
test:
name: Dagger ITs
name: Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
Expand All @@ -18,12 +18,12 @@ jobs:
go-version: "1.21.3"
check-latest: true
cache: true

- name: Install Dagger
run: |
cd /usr/local
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.3 sh
- name: Run ITs
- name: Run Integration Tests
run: |
dagger run go run ./build
8 changes: 4 additions & 4 deletions flipt-client-node/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "flipt-client-node",
"version": "0.0.1",
"description": "Flipt Node Client for evaluations through FFI",
"description": "Flipt Node Client for client-side evaluation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "",
"license": "ISC",
"license": "MIT",
"scripts": {
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-check": "prettier --check src/**/*.ts",
"fmt": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "prettier --check src/**/*.ts",
"test": "jest"
},
"dependencies": {
Expand Down

0 comments on commit 2b0eb65

Please sign in to comment.