feat(document): download attached images in document view #1007
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: "2.7.9" | |
| - name: Generate GraphQL code | |
| run: deno task codegen | |
| - name: Check formatting | |
| run: deno fmt --check | |
| - name: Lint code | |
| run: deno lint | |
| - name: Type check | |
| run: deno task check | |
| - name: Run tests | |
| run: deno task test --ignore=test/keyring.integration.test.ts | |
| - name: Install linear-cli for skill generation | |
| run: deno task install | |
| - name: Verify skill docs generate successfully | |
| run: deno task generate-skill-docs | |
| keyring-integration: | |
| strategy: | |
| matrix: | |
| include: | |
| - os: macos-latest | |
| - os: ubuntu-latest | |
| - os: windows-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: "2.7.9" | |
| - name: Set up Secret Service | |
| if: runner.os == 'Linux' | |
| run: | | |
| sudo apt-get update && sudo apt-get install -y gnome-keyring libsecret-tools dbus-x11 | |
| eval "$(dbus-launch --sh-syntax)" | |
| echo "DBUS_SESSION_BUS_ADDRESS=$DBUS_SESSION_BUS_ADDRESS" >> $GITHUB_ENV | |
| echo "test-password" | gnome-keyring-daemon --unlock --components=secrets | |
| - name: Keyring Integration | |
| run: deno task test test/keyring.integration.test.ts |