Run App Builders during Test Workflow #2254
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: Lint | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: volta-cli/action@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
java-package: 'jre+fx' | |
- name: App Builders Install | |
run: | | |
docker pull ghcr.io/sillsdev/app-builders:latest | |
container_id=$(docker create ghcr.io/sillsdev/app-builders:latest bash) | |
mkdir /app-builders | |
docker cp "$container_id:/" /app-builders | |
docker rm "$container_id" | |
chmod +x /app-builders/*.sh | |
java -version | |
/app-builders/sab.sh -? | head -n 4 | |
- name: NPM Install | |
run: | | |
node --version | |
npm --version | |
npm i | |
cd convert | |
npm i | |
- name: Add config | |
run: | | |
echo "export default {};" > src/lib/data/config.js | |
echo "export const firebaseConfig = null;" > src/lib/data/firebase-config.js | |
- name: Add catalog | |
run: echo "export const catalog = [];" > src/lib/data/catalog.js | |
- name: TypeScript/Svelte Check | |
run: | | |
npm list --depth=0 typescript | |
npm run check | |
- name: ESLint | |
run: | | |
npm list --depth=0 eslint eslint-plugin-import prettier | |
npm run lint | |
- name: Build | |
run: | | |
npm run build:examples | |
- name: Test | |
run: | | |
npm run test |