Fix error - Include today and full number of days #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build' | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build Master | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
rm -rf /home/runner/work/platinumdx-weather-card/platinumdx-weather-card/node_modules | |
npm install | |
npm run lint && npm run rollup -c rollup.config.js | |
ls -R /home/runner/work/platinumdx-weather-card/platinumdx-weather-card/dist | |
# - name: HACS validation | |
# uses: 'hacs/action@main' | |
# with: | |
# category: 'plugin' |