Files
advanced-camera-card/.github/workflows/build.yml
T
dependabot[bot] 2c698235fa Bump actions/checkout from 1 to 2.4.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-02-09 03:24:15 +00:00

32 lines
565 B
YAML

---
name: 'Build'
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "17 6 * * *"
workflow_dispatch:
jobs:
build:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- name: Build
run: |
npm install
npm run build
- name: HACS build validation
uses: "hacs/action@21.2.2"
with:
category: "plugin"
# Don't attempt to load into HACS (as it loads the release, not the
# build).
ignore: "hacs"