Merge pull request #1676 from SUI-Components/feat-react-web-vitals-re… #2503
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: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Redundant Builds | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
- uses: browser-actions/setup-chrome@latest | |
- run: sudo apt-get install xvfb | |
- run: npm install --no-save --no-fund --no-audit --legacy-peer-deps | |
- run: npx -y ultra-runner --raw --recursive prepublishOnly &>/dev/null | |
- run: npm run lint | |
- run: npm run test:server:ci | |
- run: xvfb-run --auto-servernum npm run test:client:ci | |
- run: npx -p ./packages/sui-ci sui-ci release | |
env: | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
GITHUB_EMAIL: [email protected] | |
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_TOKEN }} | |
GITHUB_USER: sui-bot | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |