docs: Add AWS IAM permissions changes to migration guide (#286) #401
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: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| lint: | |
| name: Lint | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| test: | |
| strategy: | |
| matrix: | |
| include: | |
| - name: Parse Server 8, Node.js 18 | |
| NODE_VERSION: 18.20.4 | |
| PARSE_SERVER_VERSION: 8 | |
| - name: Parse Server 8, Node.js 20 | |
| NODE_VERSION: 20.15.1 | |
| PARSE_SERVER_VERSION: 8 | |
| - name: Parse Server 8, Node.js 22 | |
| NODE_VERSION: 22.4.1 | |
| PARSE_SERVER_VERSION: 8 | |
| - name: Parse Server 7, Node.js 18 | |
| NODE_VERSION: 18.20.4 | |
| PARSE_SERVER_VERSION: 7 | |
| - name: Parse Server 7, Node.js 20 | |
| NODE_VERSION: 20.15.1 | |
| PARSE_SERVER_VERSION: 7 | |
| - name: Parse Server 7, Node.js 22 | |
| NODE_VERSION: 22.4.1 | |
| PARSE_SERVER_VERSION: 7 | |
| fail-fast: false | |
| name: ${{ matrix.name }} | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_VERSION: ${{ matrix.NODE_VERSION }} | |
| PARSE_SERVER_VERSION: ${{ matrix.PARSE_SERVER_VERSION }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.NODE_VERSION }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.NODE_VERSION }} | |
| cache: npm | |
| - name: Install Parse Server ${{ matrix.PARSE_SERVER_VERSION }} | |
| run: npm i -DE parse-server@${{ matrix.PARSE_SERVER_VERSION }} | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run tests | |
| run: npm run test | |
| - name: Upload code coverage | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| fail_ci_if_error: false | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true |