Skip to content

Commit 3b765c0

Browse files
committed
test quicker
1 parent 4df7c85 commit 3b765c0

File tree

1 file changed

+43
-42
lines changed

1 file changed

+43
-42
lines changed

.github/workflows/publish.yml

Lines changed: 43 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -28,46 +28,47 @@ jobs:
2828
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2929
run: |
3030
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
31-
- name: Install dependencies
32-
run: npm ci
33-
- name: Run tests
34-
run: npx lerna run test:e2e --since master
35-
- name: Build packages
36-
run: npx lerna run build:packages --since master
37-
- name: Publish packages
38-
run: npx lerna publish patch --no-verify-access --yes
31+
cat .npmrc
32+
# - name: Install dependencies
33+
# run: npm ci
34+
# - name: Run tests
35+
# run: npx lerna run test:e2e --since master
36+
# - name: Build packages
37+
# run: npx lerna run build:packages --since master
38+
# - name: Publish packages
39+
# run: npx lerna publish patch --no-verify-access --yes
3940

40-
rmw-shell-demo:
41-
if: ${{ always() }}
42-
needs: [publish_packages]
43-
runs-on: ubuntu-latest
44-
environment: prod
45-
steps:
46-
- uses: actions/checkout@v4
47-
- uses: actions/setup-node@v4
48-
with:
49-
node-version: "20"
50-
- name: git config
51-
run: |
52-
git config user.name "${GITHUB_ACTOR}"
53-
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
54-
- name: install-rmw-shell
55-
run: npm create @ecronix/rmw-shell@latest demo-app
56-
- name: install firebase functins dependencies
57-
run: npm i
58-
working-directory: ./demo-app/firebase/functions
59-
- name: run build
60-
run: |
61-
npm run build
62-
env:
63-
CI: false
64-
working-directory: ./demo-app
65-
- name: Install firebase tools
66-
run: npm i -g firebase-tools
67-
- name: Deploy
68-
run: |
69-
firebase use prod
70-
firebase deploy --only hosting --token $FIREBASE_TOKEN
71-
working-directory: ./demo-app
72-
env:
73-
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
41+
# rmw-shell-demo:
42+
# if: ${{ always() }}
43+
# needs: [publish_packages]
44+
# runs-on: ubuntu-latest
45+
# environment: prod
46+
# steps:
47+
# - uses: actions/checkout@v4
48+
# - uses: actions/setup-node@v4
49+
# with:
50+
# node-version: "20"
51+
# - name: git config
52+
# run: |
53+
# git config user.name "${GITHUB_ACTOR}"
54+
# git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
55+
# - name: install-rmw-shell
56+
# run: npm create @ecronix/rmw-shell@latest demo-app
57+
# - name: install firebase functins dependencies
58+
# run: npm i
59+
# working-directory: ./demo-app/firebase/functions
60+
# - name: run build
61+
# run: |
62+
# npm run build
63+
# env:
64+
# CI: false
65+
# working-directory: ./demo-app
66+
# - name: Install firebase tools
67+
# run: npm i -g firebase-tools
68+
# - name: Deploy
69+
# run: |
70+
# firebase use prod
71+
# firebase deploy --only hosting --token $FIREBASE_TOKEN
72+
# working-directory: ./demo-app
73+
# env:
74+
# FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}

0 commit comments

Comments
 (0)