Add replacer param to api-client #26
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: 👾 Check, Lint, and Format | |
| on: | |
| push: { branches: [master] } | |
| pull_request: { types: [opened, reopened, synchronize] } | |
| jobs: | |
| lint-and-format-check: | |
| name: 👾 Run Check, Lint and Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🐧 Check out repository code | |
| uses: actions/checkout@v5 | |
| with: { fetch-depth: 0 } | |
| - name: 🦖 Set up Deno | |
| uses: denoland/setup-deno@v2 | |
| with: { deno-version: v2.x, cache: true } | |
| - name: 🦊 Run Types Checks | |
| run: deno check | |
| - name: 📏 Run Linter | |
| run: deno lint --compact | |
| - name: 🧙♂️ Run Format | |
| run: deno fmt |