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

chore: Test with GA #2686

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all 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
32 changes: 20 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,29 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
# - name: Install packages
# run: yarn install --frozen-lockfile
- name: Install packages
run: yarn install --frozen-lockfile
# - name: Lint
# run: yarn lint
# - name: Build JS/CSS/DOCS
# run: yarn build:all
- name: Generate Sprite and Palette
run: yarn makeSpriteAndPalette
- name: Build JS
run: yarn build
- name: Build CSS
run: yarn build:css:all
- name: Build docs React
run: yarn build:doc:react
- name: Build docs KSS
run: yarn build:doc:kss
# - name: Tests without snapshots
# run: yarn test:noSnapshots
# - name: Tests snapshots
# run: yarn test:snapshots
# # - name: Bundlemon
# # run: yarn bundlemon
# - name: Bundlemon
# run: yarn bundlemon
# - name: Argos - Prepare env
# run: |
# yarn add puppeteer@"21.11.0" --dev --exact
# yarn add puppeteer@"21.11.0" --dev --exact --no-lockfile
# mkdir ./screenshots
# - name: Argos - Create desktop screenshots
# run: yarn screenshots --mode react --viewport desktop --screenshot-dir ./screenshots/reactDesktop
Expand All @@ -45,8 +53,8 @@ jobs:
# yarn argos:upload --parallel screenshots/reactDesktop/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $GITHUB_RUN_ID-${UUID} --ignore ''
# yarn argos:upload --parallel screenshots/reactMobile/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $GITHUB_RUN_ID-${UUID} --ignore ''
# yarn argos:upload --parallel screenshots/kss/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $GITHUB_RUN_ID-${UUID} --ignore ''
# - name: Deploy
# if: ${{ github.ref_name == 'master' }}
# run: |
# yarn deploy:doc --username cozycloud --email [email protected] --repo https://cozy-bot:[email protected]/cozy/cozy-ui.git
# yarn semantic-release
- name: Deploy
# if: ${{ github.ref_name == 'master' }}
# yarn deploy:doc --username cozycloud --email [email protected] --repo https://cozy-bot:[email protected]/cozy/cozy-ui.git
# yarn semantic-release
run: yarn git-directory-deploy --directory ./ --branch build-jf --username cozycloud --email [email protected] --repo https://cozy-bot:[email protected]/cozy/cozy-ui.git
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
node_modules
package-lock.json
build
dist
.changelog
yarn-error.log
coverage
Expand All @@ -20,9 +19,6 @@ Thumbs.db
desktop.ini

.cache
transpiled

# Generated files
react/Icon/icons-sprite.js
react/palette.js
/screenshots
Loading