Skip to content

package.json: fix mocha-chrome #40

package.json: fix mocha-chrome

package.json: fix mocha-chrome #40

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: 16.x
- name: Install Dependencies
run: |
npm install
- name: Build Library
run: |
npm run build
- name: Package Library for npm
run: |
npm pack
- uses: actions/upload-artifact@v4
with:
name: openfl-npm
path: openfl-*.tgz
if-no-files-found: error
- name: Run Tests
run: |
npm test
- name: Build docs
run: |
npm run build-docs
- name: Notify Discord (success)
if: ${{ github.repository == 'openfl/openfl-js' && github.event_name != 'pull_request' }}
uses: appleboy/discord-action@master
with:
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
color: "#00C07F"
message: "https://github.com/openfl/openfl-js/actions\nUnit tests succeeded."
- name: Notify Discord (failure)
uses: appleboy/discord-action@master
if: ${{ failure() && github.repository == 'openfl/openfl-js' && github.event_name != 'pull_request' }}
with:
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
color: "#FF6562"
message: "https://github.com/openfl/openfl-js/actions\nUnit tests failed."