Skip to content

updated local metadata #154

updated local metadata

updated local metadata #154

Workflow file for this run

name: Node CI
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 14
cache: npm
- name: npm install, build, and test
run: |
npm ci
npm test
npm run build
env:
CI: true
TZ: Europe/Berlin