feat: sort eventList by createdAtMillis in frontend #602
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 is a basic workflow to help you get started with Actions | |
name: Deploy my-portfolio-app-preact | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [develop] | |
paths: | |
- .github/workflows/deploy_portfolio_app.yml | |
- config/tsconfig/** | |
- yarn.lock | |
- packages/utils/** | |
- packages/apps/my-portfolio-app-preact/** | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
buildAndDeploy: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
# Set up GitHub Actions caching for Wireit. | |
# - uses: google/wireit@setup-github-actions-caching/v1.0.2 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: build dependencies | |
run: yarn zz:wsrun-stages --recursive -p @noshiro/my-portfolio-app-preact -c build | |
- name: lint | |
run: yarn workspace @noshiro/my-portfolio-app-preact lint | |
- name: test | |
run: yarn workspace @noshiro/my-portfolio-app-preact test | |
- name: deploy | |
run: yarn workspace @noshiro/my-portfolio-app-preact fb:deploy | |
env: | |
PROJECT_ID: release | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} |