Skip to content

Merge pull request #15 from koodiklinikka/fix-lint #266

Merge pull request #15 from koodiklinikka/fix-lint

Merge pull request #15 from koodiklinikka/fix-lint #266

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
#schedule:
# Update automatically on weekdays during work hours
#- cron: '0 10,13,16 * * 1-5'
# ... and every night
#- cron: '0 0 * * *'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip
- uses: pre-commit/[email protected]
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Build
run: make -j3
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: yarn
cache-dependency-path: analysaattori/yarn.lock
- run: yarn
working-directory: analysaattori
- run: yarn build -- --base=/palkkakysely/analysaattori/
working-directory: analysaattori
env:
GENERATE_SOURCEMAP: "false"
- run: cp -a analysaattori/dist ./out/analysaattori
- run: ls -laR out
- run: touch out/.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: out
clean: false
if: ${{ github.event_name == 'push' }}
env:
GIT_AUTHOR_EMAIL: "[email protected]"
GIT_AUTHOR_NAME: "Koodiklinikka Robot"
GIT_COMMITTER_EMAIL: "[email protected]"
GIT_COMMITTER_NAME: "Koodiklinikka Robot"