diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index fe0ae7c8..2fabd88f 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -4,14 +4,17 @@ on: push: branches: - main + pull_request: + branches: + - main defaults: run: working-directory: ./web jobs: - ci: - name: Build & Deploy + validate: + name: Validate runs-on: ${{ matrix.os }} strategy: @@ -37,8 +40,26 @@ jobs: - name: Run tests ๐Ÿงช run: pnpm test - - name: Debug ๐Ÿ› - run: echo GITHUB_SHA=${GITHUB_SHA} + - name: Build ๐Ÿ—๏ธ + run: mv .env.production .env && echo GITHUB_SHA=${GITHUB_SHA} >> .env && pnpm run generate + + deploy: + name: Deploy + needs: validate + if: github.event_name == 'push' && github.ref == 'refs/heads/main' + runs-on: ubuntu-latest + + steps: + - name: Checkout ๐Ÿ›Ž + uses: actions/checkout@master + + - uses: pnpm/action-setup@v6 + name: Install pnpm + with: + version: 10 + + - name: Install dependencies ๐Ÿ“ฆ + run: pnpm install - name: Build ๐Ÿ—๏ธ run: mv .env.production .env && echo GITHUB_SHA=${GITHUB_SHA} >> .env && pnpm run generate diff --git a/web/pages/bulk-messages/index.vue b/web/pages/bulk-messages/index.vue index b2935bcd..74632210 100644 --- a/web/pages/bulk-messages/index.vue +++ b/web/pages/bulk-messages/index.vue @@ -273,7 +273,8 @@ export default Vue.extend({ .clickable-row { cursor: pointer; } + .clickable-row:hover { - background-color: rgba(0, 0, 0, 0.04); + background-color: rgb(0 0 0 / 4%); }