use beta s in github action test #96
This file contains 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: Nodejs16 base ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
RANDSTR: github_node16 | |
REGION: cn-hongkong | |
jobs: | |
macos-ci: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install dependencies | |
run: | | |
brew update | |
brew install curl wget | |
- name: install s | |
run: | | |
npm i @serverless-devs/s@beta -g | |
- name: config s | |
run: | | |
s config add --AccountID ${{secrets.ACCOUNTID}} --AccountID ${{secrets.ACCOUNTID}} --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f | |
- name: NPM install | |
run: | | |
npm install | |
- name: run base ci ut and it | |
run: | | |
npm run test | |
- name: NPM run build | |
run: | | |
npm run build | |
- name: run base ci e2e | |
run: | | |
cd __tests__/e2e && ./ci-mac-linux.sh && cd - | |
windows-ci: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install dependencies | |
run: | | |
choco install -y wget | |
choco install -y curl | |
- name: install s | |
run: | | |
npm i @serverless-devs/s@beta -g | |
- name: config s | |
run: | | |
s config add --AccountID ${{secrets.ACCOUNTID}} --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f | |
- name: NPM install | |
run: | | |
npm install | |
- name: run base ci ut and it | |
run: | | |
npm run test | |
- name: NPM run build | |
run: | | |
npm run build | |
- name: run base ci | |
shell: pwsh | |
run: | | |
cd __tests__/e2e | |
.\ci-windows.ps1 | |
linux-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y wget curl | |
- name: install s | |
run: | | |
npm i @serverless-devs/s@beta -g | |
- name: config s | |
run: | | |
s config add --AccountID ${{secrets.ACCOUNTID}} --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f | |
- name: NPM install | |
run: | | |
npm install | |
- name: run base ci ut and it | |
run: | | |
npm run test | |
- name: NPM run build | |
run: | | |
npm run build | |
- name: run base ci | |
run: | | |
cd __tests__/e2e && ./ci-mac-linux.sh && cd - |