feat(packages/sui-test-e2e): make e2e folder optional #2649
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
checks-and-release: | |
name: Checks & Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Redundant Builds | |
uses: styfle/cancel-workflow-action@0.6.0 | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version-file: '.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Setup Chrome | |
uses: browser-actions/setup-chrome@latest | |
- name: Install | |
run: | | |
sudo apt-get install xvfb | |
npm install --no-save --no-fund --no-audit --legacy-peer-deps | |
npx -y ultra-runner --raw --recursive prepublishOnly &>/dev/null | |
- name: Lint | |
run: npm run lint | |
- name: Tests | |
run: | | |
npm run test:server:ci | |
xvfb-run --auto-servernum npm run test:client:ci | |
- name: Release | |
if: github.ref == 'refs/heads/master' | |
run: | | |
npx -p ./packages/sui-mono sui-mono check | |
npx -p ./packages/sui-ci sui-ci release | |
env: | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
GITHUB_EMAIL: cloud-accounts@scmspain.com | |
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_TOKEN }} | |
GITHUB_USER: sui-bot | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |