This repository was archived by the owner on May 29, 2025. It is now read-only.
print body in OAuth 2 http errors #66
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: Release | |
| on: push | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| name: CI | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| - name: Install @yaakapp/cli | |
| run: npm install -g @yaakapp/cli | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: Build Plugins | |
| run: npm run build | |
| - name: Lint | |
| run: npm run lint | |
| - name: Run Tests | |
| run: npm test |