Skip to content

feat: changed Subject/Thema and Subjects/Themen to Layer/Layer and Layers/Layers. #593

feat: changed Subject/Thema and Subjects/Themen to Layer/Layer and Layers/Layers.

feat: changed Subject/Thema and Subjects/Themen to Layer/Layer and Layers/Layers. #593

Workflow file for this run

name: Node CI
on: [ pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14.x, 16.x]
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Cache Node.js modules 💾
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies ⏬
run: npm ci
- name: Lint code 💄
run: npm run lint
- name: Typecheck code 👓
run: npm run typecheck
- name: Test code ✅
run: npm run test
env:
CI: true