fix invalidating but no longer have auto retry #346
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: Validate and Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies ⚙️ | |
run: | | |
npm i --legacy-peer-deps | |
# Workaround for missing binary | |
npm i @swc/core-linux-x64-gnu --legacy-peer-deps | |
- name: writeGitInfo ✍️ | |
run: npm run writeGitInfo --if-present | |
- name: Typecheck 🤙 | |
run: npm run typecheck --if-present | |
- name: Lint 👌 | |
run: npm run lint --if-present | |
- name: Test 🧪 | |
run: npm run test:ci --if-present | |
env: | |
CI: false # true -> fails on warning | |
- name: Build components 🔧 | |
run: npm run build --ignore-scripts --if-present | |
- name: Build docker image 💿 | |
if: ${{ github.ref == 'main' }} | |
run: | | |
docker build . -t mdworld/homeremote:latest |