fix: various failures and issues #2
Workflow file for this run
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: Update check | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
go: | |
name: Check for changes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies and link | |
run: | | |
npm ci | |
npm link | |
- name: Validate no changes | |
run: | | |
npm run dev:pre-commit | |
git --no-pager diff | |
[[ 0 -eq $(git status --porcelain | wc -l) ]] |