Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/qs-6.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ff6347 authored Dec 1, 2023
2 parents 27cab6a + 5251f65 commit a1b3810
Show file tree
Hide file tree
Showing 7 changed files with 22,085 additions and 13,251 deletions.
46 changes: 30 additions & 16 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,42 @@ env:
URL: http://localhost:5000
on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
build:
env:
URL: http://localhost:5000

runs-on: ubuntu-latest
runs-on:
ubuntu-latest

# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
release:
name: semantic-release
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js ${{ steps.nvm.outputs.NVMRC }}
uses: actions/setup-node@v3
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: |
npm ci
npx semantic-release --ci
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.19.1
v20.9.0
27 changes: 15 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,41 @@

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->

[![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#contributors-)

<!-- ALL-CONTRIBUTORS-BADGE:END -->

# Badestellen a.k.a. badestellen.berlin.de

- [Website](https://badestellen.berlin.de/)
- [Launch-Blogpost](https://lab.technologiestiftung-berlin.de/projects/bathing-water/index.html)

## Overview

The repository consists of 2 folders:
The repository consists of:

### 1. material
### 1. /material

Graphic source files

### 2. app
### 2. /src

The HTML web application (frontend)
The Svelte web application (frontend)

## The App
## The Application

Install dependencies
`npm install`
`npm ci`

Run a local webserver
`npm serve`
`npm run dev`

ESLint
`npm lint`

Build css and js files
`npm build`
`npm run lint` or `npm run lint:fix`

Build the application

`npm run build`

## Contributors ✨

Expand Down Expand Up @@ -59,7 +63,6 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!


## Content Licencing

Texts and content available as [CC BY](https://creativecommons.org/licenses/by/3.0/de/).
Expand Down
Loading

0 comments on commit a1b3810

Please sign in to comment.