feat: support xlts versions (enterprise images) #297
Workflow file for this run
This file contains hidden or 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: 🚀 | |
| on: | |
| pull_request: {} | |
| push: { branches: [main] } | |
| jobs: | |
| test: | |
| name: 🧪 Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install package manager (from package.json) | |
| run: | | |
| corepack enable | |
| corepack install | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: package.json | |
| cache: 'yarn' | |
| - name: Install deps | |
| run: yarn install --immutable | |
| - name: run linter | |
| run: yarn lint && yarn workspace functions lint | |
| - name: run tests | |
| run: yarn test && yarn workspace functions test | |
| build: | |
| name: 🛠 Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install package manager (from package.json) | |
| run: | | |
| corepack enable | |
| corepack install | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: package.json | |
| cache: 'yarn' | |
| - name: Install deps | |
| run: yarn install --immutable | |
| - name: build | |
| run: yarn workspace functions build | |
| testDeploy: | |
| name: Test Deploy | |
| needs: [test, build] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install package manager (from package.json) | |
| run: | | |
| corepack enable | |
| corepack install | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: package.json | |
| cache: 'yarn' | |
| - name: Install deps | |
| run: yarn install | |
| - name: Deploy test to Firebase | |
| uses: w9jds/[email protected] | |
| with: | |
| args: help ; corepack enable ; corepack install ; firebase deploy --only functions:testFunction --force | |
| env: | |
| GCP_SA_KEY: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_UNITY_CI_VERSIONS }}' | |
| - name: Call Test Function | |
| run: curl -f -s -S -X POST https://testfunction-wbe4ukn6tq-ey.a.run.app | |
| - name: Cleanup Firebase Test | |
| uses: w9jds/[email protected] | |
| if: always() | |
| with: | |
| args: help ; corepack enable ; corepack install ; firebase functions:delete testFunction --force | |
| env: | |
| GCP_SA_KEY: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_UNITY_CI_VERSIONS }}' | |
| deploy: | |
| name: ✨ Deploy | |
| needs: [test, build, testDeploy] | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install package manager (from package.json) | |
| run: | | |
| corepack enable | |
| corepack install | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: package.json | |
| cache: 'yarn' | |
| - name: Install deps | |
| run: yarn install --immutable | |
| - name: Deploy to Firebase | |
| uses: w9jds/[email protected] | |
| with: | |
| args: help ; corepack enable ; corepack install ; firebase deploy | |
| env: | |
| GCP_SA_KEY: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_UNITY_CI_VERSIONS }}' | |
| - name: Cleanup Firebase Test | |
| uses: w9jds/[email protected] | |
| if: always() | |
| with: | |
| args: help ; corepack enable ; corepack install ; firebase functions:delete testFunction --force | |
| env: | |
| GCP_SA_KEY: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_UNITY_CI_VERSIONS }}' |