Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔧 Setup GitHub actions #3374

Open
wants to merge 12 commits into
base: v2-bridge
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 7 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
16 changes: 0 additions & 16 deletions .circleci/config.yml
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Il faut laisser ce fichier pour que CircleCI ignore cette branche et celles qui sont crées à partir de celle-ci

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

je l ai remis

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mais j ai desacitver le circle ci , donc je suis pas sur que cela soit necessaire ?? non ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Il faut le mettre vu qu'on a réactivé CircleCI pour la v2

Original file line number Diff line number Diff line change
@@ -1,16 +0,0 @@
version: 2.1

jobs:
dummy:
docker:
- image: cimg/node:16.20-browsers
steps:
- run: echo "Hello World"

workflows:
build-deploy:
jobs:
- dummy:
filters:
branches:
only: v2
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Library DS CI - Synpase
christopheGaon marked this conversation as resolved.
Show resolved Hide resolved

on:
pull_request:

jobs:
ci:
uses: ./actions/ci.yml

christopheGaon marked this conversation as resolved.
Show resolved Hide resolved

28 changes: 28 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Library DS Package and Publish - Synpase
christopheGaon marked this conversation as resolved.
Show resolved Hide resolved

env:
NODE_VERSION: 20.11.0

on:
release:
types: [created]

jobs:
validate:
uses: ./actions/ci.yml

publish-npm:
needs: validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
christopheGaon marked this conversation as resolved.
Show resolved Hide resolved
30 changes: 30 additions & 0 deletions actions/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
env:
NODE_VERSION: 20.11.0
PNPM_VERSION: 8

on:
workflow_call:

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm ${{ env.PNPM_VERSION }}
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}

- name: Install node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- run: corepack enable
- name : install dependency
christopheGaon marked this conversation as resolved.
Show resolved Hide resolved
run: pnpm install --frozen-lockfile
- name: lint test
run: pnpm lint
- name : run test
christopheGaon marked this conversation as resolved.
Show resolved Hide resolved
run: pnpm test
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
"scripts": {
"prepare": "lerna run dev:setup",
"dev": "lerna run dev",
"test:unit": "lerna run test:unit",
"test": "lerna run test",
"lint": "lerna run lint",
"build": "lerna run build"
},
"devDependencies": {
"lerna": "7.3.0",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
"node": "^20.11.0",
"pnpm": "^8.0.0"
}
}
3 changes: 2 additions & 1 deletion packages/synapse-bridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"scripts": {
"dev:setup": "tsx scripts/devSetup.ts",
"dev": "vite",
"test:unit": "vitest run",
"test": "vitest run",
"lint": "echo 1",
deraw marked this conversation as resolved.
Show resolved Hide resolved
"preview": "vite preview",
"analyze": "vite build --mode analyze",
"build": "vue-tsc && vite build"
Expand Down