Update README.md to mention AS3 more #21
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, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v3 | |
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@v3 | |
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) | |
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() | |
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." | |