Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
janno42 committed Jul 4, 2023
2 parents 2c19ec1 + 4f79efb commit 8dd30b5
Show file tree
Hide file tree
Showing 145 changed files with 14,952 additions and 17,227 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
822b3f38dce85fe3785965f120e5eb1accebd495
# run prettier on all other typescript files
02ea57d2c33eb2801414982662acd8582e361d10
# enforce pylint's `use-dict-literal`
0d3fed856961fd453555637ada50080901160e9a
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
rebase-strategy: "disabled"
labels:
- "[T] Dependencies"
versioning-strategy: "increase-if-necessary"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
rebase-strategy: "disabled"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
- dependency-name: "*puppeteer*"
update-types: ["version-update:semver-minor"]
labels:
- "[T] Dependencies"
6 changes: 6 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# .github/release.yml

changelog:
exclude:
authors:
- dependabot
14 changes: 14 additions & 0 deletions .github/setup_nodejs/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Setup nodejs"
description: "Sets up nodejs for use in actions with caching"

runs:
using: "composite"
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: npm

- name: Install Node dependencies
run: npm ci
shell: bash
27 changes: 27 additions & 0 deletions .github/setup_python/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Setup Python"
description: "Sets up Python for use in actions with caching and copy localsettings"

runs:
using: "composite"
steps:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Restore venv cache
uses: syphar/restore-virtualenv@v1
id: cache-virtualenv

- name: Restore pip download cache
uses: syphar/restore-pip-download-cache@v1
if: steps.cache-virtualenv.outputs.cache-hit != 'true'

- name: Install dependencies
run: pip install -r requirements-dev.txt
shell: bash
if: steps.cache-virtualenv.outputs.cache-hit != 'true'

- name: Add localsettings
run: cp evap/settings_test.py evap/localsettings.py
shell: bash
36 changes: 0 additions & 36 deletions .github/workflows/debug-tests.yml

This file was deleted.

Loading

0 comments on commit 8dd30b5

Please sign in to comment.