fix dependency in gh actions #21
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
name: Publish packages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish_packages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: git config | |
run: | | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npx lerna run test --since master | |
- name: Build packages | |
run: npx lerna run build | |
- name: Publish packages | |
run: npx lerna publish from-package --yes | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
rmw-shell-demo: | |
if: ${{ always() }} | |
needs: [publish_packages] | |
runs-on: ubuntu-latest | |
environment: prod | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: git config | |
run: | | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- name: install-rmw-shell | |
run: npx create @ecronix/rmw-shell@latest demo-app | |
- name: install firebase functins dependencies | |
run: npm i | |
working-directory: ./demo-app/firebase/functions | |
- name: run build | |
run: | | |
npm run build | |
env: | |
CI: false | |
working-directory: ./demo-app | |
- name: Install firebase tools | |
run: npm i -g firebase-tools | |
- name: Deploy | |
run: | | |
firebase use prod | |
firebase deploy --only hosting --token $FIREBASE_TOKEN | |
working-directory: ./demo-app | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} |