From 8b355c365ea0a48f9904e369efb2f4c01eb301f8 Mon Sep 17 00:00:00 2001 From: Martin Fournier Date: Sun, 19 Dec 2021 15:43:13 -0500 Subject: [PATCH] Add github workflow to run tests, linter & build --- .github/workflows/ci.yml | 51 ++++++++++++++++++++++++++++++++++++++++ package.json | 2 ++ 2 files changed, 53 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..01643cd66 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,51 @@ +# This is a basic workflow to help you get started with Actions +name: CI + +on: + # Triggers the workflow on push or pull request events but only for the dev branch + push: + branches: [ dev ] + pull_request: + branches: [ dev ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [16.13.1] + + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - run: echo "The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - uses: actions/checkout@v2 + - run: echo "The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "The workflow is now ready to test your code on the runner." + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - name: Install npm dependencies + run: npm ci + - name: Run unit tests + run: npm run test + - name: Run linter + run: npm run lint:report + - name: Build the web app + run: npm run build + + # Cannot build the electron app by default using ubuntu + # Wrapper command 'wine64' not found on the system. Consult your Linux distribution's package manager to determine how to install Wine. + # - name: Build the electron app + # run: ./package.sh + + # Unable to properly run the cypress tests for now, they are throwing errors. + # - name: Run the integration tests + # run: npm run cy:test diff --git a/package.json b/package.json index ee42097e9..ab76e5851 100644 --- a/package.json +++ b/package.json @@ -104,11 +104,13 @@ "build": "webpack --mode production", "build:dev": "webpack --mode development", "lint": "eslint --fix . --ext js,jsx,ts,tsx", + "lint:report": "eslint --ext js,jsx,ts,tsx .", "preinstall": "node ./scripts/engines-check.js", "test": "jest", "test:watch": "jest --watch", "watch": "webpack --watch --mode production", "watch:dev": "webpack --watch --mode development", + "package-electron": "electron-packager .package bitburner --all --out .build --overwrite --icon .package/icon.png", "electron": "cp -r electron/* .package && cp index.html .package && cp main.bundle.js .package && cp dist/vendor.bundle.js .package/dist/ && cp -r dist/ext .package/dist/ && electron-packager .package bitburner --all --out .build --overwrite --icon .package/icon.png", "allbuild": "npm run build && npm run electron && git add --all && git commit --amend --no-edit && git push -f -u origin dev" }