Merge pull request #1006 from devsapp/remove-proxied #603
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: Serverless Devs Project CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| max-parallel: 3 | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: 14 | |
| registry-url: https://registry.npmjs.org/ | |
| - name: NPM install | |
| run: | | |
| npm install | |
| - name: NPM install s | |
| run: | | |
| npm install -g @serverless-devs/s | |
| - name: NPM run lint | |
| run: | | |
| npm run fix | |
| npm run lint | |
| - name: NPM run test-integration | |
| env: | |
| AccountID: ${{secrets.ACCOUNTID}} | |
| AccessKeyID: ${{secrets.ACCESSKEYID}} | |
| AccessKeySecret: ${{secrets.ACCESSKEYSECRET}} | |
| run: | | |
| npm run test-integration || npm run test-integration |