Update EsLint ruleset (#37) #51
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/CD | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 16.x | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Setup Defold | |
uses: dapetcu21/[email protected] | |
- name: Install Dependencies | |
run: npm install | |
- name: Genrate lua w/ ts-defold | |
run: npm run build | |
- name: Build | |
run: 'java -jar $BOB --root ./app --archive --platform js-web --verbose resolve distclean build bundle' |