Skip to content

Templates update evcc-io/evcc@fd5027ce9cf3d19cbca7bc68a7665b71ac0bcfb3 #1233

Templates update evcc-io/evcc@fd5027ce9cf3d19cbca7bc68a7665b71ac0bcfb3

Templates update evcc-io/evcc@fd5027ce9cf3d19cbca7bc68a7665b71ac0bcfb3 #1233

Workflow file for this run

name: verify
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Test Build
run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
npm run build