upgrade(deps): bump karma-coverage from 2.2.0 to 2.2.1 #2602
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/[email protected] | |
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: [email protected] | |
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_TOKEN }} | |
GITHUB_USER: sui-bot | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |