Remove unused variable from #1018 #1891
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: PR Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
'Checking': | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# Ubuntu is not ubuntu-latest as that is causing hangs in the CI | |
os: [macos-latest, ubuntu-20.04, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: ' Startup ChromeDriver and Display in Ubuntu' | |
shell: bash | |
if: matrix.os == 'ubuntu-20.04' | |
run: | | |
export DISPLAY=:99 | |
# TODO: need to download driver according to electron's version | |
wget --directory-prefix=/tmp https://chromedriver.storage.googleapis.com/87.0.4280.88/chromedriver_linux64.zip | |
unzip -d /tmp/chromedriver /tmp/chromedriver_linux64.zip | |
sudo chmod +x /tmp/chromedriver/chromedriver | |
/tmp/chromedriver/chromedriver & | |
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & | |
- name: ' Install Dependencies' | |
shell: bash | |
run: | | |
npm install | |
- name: ' Lint' | |
shell: bash | |
run: | | |
npm run lint | |
- name: ' Tests' | |
shell: bash | |
env: | |
DISPLAY: ':99' | |
run: | | |
npm run test:jest | |
- name: ' Create COV_REPORT' | |
run: | | |
mkdir COV_REPORT | |
- name: ' Copy jest results' | |
run: | | |
cp coverage_jest/coverage-final.json COV_REPORT/coverage-final-jest.json | |
- name: ' CodeCov' | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: COV_REPORT/coverage-final-jest.json | |
name: codecov-${{ matrix.os }} | |
verbose: true |