Add MongoDB extension support to Amazon Linux 2023 PHP 8.4 #1121
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: Main workflow | |
| on: [push, pull_request] | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.x' | |
| - name: Dependencies | |
| run: npm install | |
| - name: Bootstrap | |
| run: npm run bootstrap | |
| - name: Build | |
| run: npm run build | |
| - name: Tests | |
| run: npm run test |