observervault.org website #77
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
| # Copyright 2020 Signal Messenger, LLC | |
| # SPDX-License-Identifier: AGPL-3.0-only | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - development | |
| - main | |
| - '[0-9]+.[0-9]+.x' | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - run: lsb_release -a | |
| - run: uname -a | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4 | |
| - name: Setup node.js | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'pnpm' | |
| cache-dependency-path: 'pnpm-lock.yaml' | |
| - name: Cache .electron-gyp | |
| uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 | |
| with: | |
| path: ~/.electron-gyp | |
| key: electron-gyp-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }} | |
| # - name: Setup sccache | |
| # uses: mozilla-actions/sccache-action@054db53350805f83040bf3e6e9b8cf5a139aa7c9 # v0.0.7 | |
| # - name: Restore sccache | |
| # uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 | |
| # with: | |
| # path: ${{ env.SCCACHE_PATH }} | |
| # key: sccache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml', 'patches/**') }} | |
| - name: Restore cached .eslintcache and tsconfig.tsbuildinfo | |
| uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 | |
| id: cache-lint | |
| with: | |
| path: | | |
| .eslintcache | |
| tsconfig.tsbuildinfo | |
| key: lint-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml', 'patches/**', '.eslintrc.js', '.eslint/**', 'tsconfig.json') }} | |
| - name: Install Desktop node_modules | |
| run: pnpm install | |
| env: | |
| # CC: sccache gcc | |
| # CXX: sccache g++ | |
| # SCCACHE_GHA_ENABLED: "true" | |
| NPM_CONFIG_LOGLEVEL: verbose | |
| - run: pnpm run generate | |
| - run: pnpm run lint | |
| - run: pnpm run lint-deps | |
| - run: pnpm run lint-license-comments | |
| - name: Check acknowledgments file is up to date | |
| run: pnpm run build:acknowledgments | |
| env: | |
| REQUIRE_SIGNAL_LIB_FILES: 1 | |
| - run: git diff --exit-code | |
| - name: Update cached .eslintcache and tsconfig.tsbuildinfo | |
| uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 | |
| if: github.ref == 'refs/heads/main' | |
| with: | |
| path: | | |
| .eslintcache | |
| tsconfig.tsbuildinfo | |
| key: ${{ steps.cache-lint.outputs.cache-primary-key }} |