-
Notifications
You must be signed in to change notification settings - Fork 12
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
christopheGaon
wants to merge
12
commits into
v2-bridge
Choose a base branch
from
bridge/ci-github-action
base: v2-bridge
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
🔧 Setup GitHub actions #3374
Changes from 6 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
1f4d69b
clean circle-ci
36af443
add github-action with 2 jobs
67d3481
use correct version for node and pnpm
1196fb1
have package.json valid with https://github.com/logue/vite-vuetify-ts…
8da7309
refacto github action
459633f
review @dylan
a2232b9
review @chris
b3b85f6
Apply suggestions from code review
christopheGaon 2ce1b1d
variabiliser le cache du node
7728cb4
rollback config.yml sur circleCI
b109386
test CI on PR
oc8 d6bad9d
test CI on PR
oc8 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/build.yml | ||
|
||
christopheGaon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
je l ai remis
There was a problem hiding this comment.
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 ?
There was a problem hiding this comment.
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