fix(ask arie): add ask arie tooltip #103
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: PR Preview Deployment | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, closed] | |
| paths: | |
| - "content/**" | |
| - "src/**" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| if: github.event.action != 'closed' | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.x" | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Run linter | |
| run: yarn lint | |
| deploy-preview: | |
| runs-on: ubuntu-latest | |
| needs: lint | |
| if: github.event.pull_request.head.repo.full_name == github.repository && github.event.action != 'closed' | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.x" | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Build Next.js application | |
| run: yarn build | |
| - uses: permaweb/permaweb-deploy@v0.1.0 | |
| with: | |
| deploy-key: ${{ secrets.DEPLOY_KEY }} | |
| arns-name: ${{ secrets.ARNS_NAME }} | |
| preview: "true" | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| deploy-folder: ./out | |
| ttl-seconds: "60" |