build(deps): bump ybiquitous/npm-audit-fix-action from 6.2.0 to 6.3.0 #1445
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: Smoke test on Ubuntu (Apache Cordova) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
HUSKY: 0 | |
jobs: | |
build: | |
name: Apache Cordova CLI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: set up JDK 11 | |
uses: actions/[email protected] | |
with: | |
distribution: "temurin" | |
java-version: 11 | |
- uses: actions/[email protected] | |
with: | |
node-version: 18 | |
- name: Environment Information | |
run: | | |
node --version | |
npm --version | |
java -version | |
- name: Setup Project | |
run: | | |
npm i -g cordova | |
cordova create lottie-smoke-test | |
cd lottie-smoke-test | |
cordova platform add android@11 | |
sed -i '4i\ <preference name="GradlePluginKotlinEnabled" value="true" />' config.xml | |
sed -i '4i\ <preference name="GradlePluginKotlinVersion" value="1.7.22" />' config.xml | |
- name: Install Plugins | |
run: | | |
cd lottie-smoke-test | |
cordova plugin add $GITHUB_WORKSPACE --link | |
- name: Build Project | |
run: | | |
cd lottie-smoke-test | |
cordova build android |