Break out ConfigData into Types for DAB / SAB #2210
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 | |
- 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 |