Compare commits

..

No commits in common. "fda098871ceb39b670c05c728f73b688b092e49b" and "36dac8db8333c1538a32b95e873629eadbfa67b5" have entirely different histories.

2 changed files with 7 additions and 6 deletions

View file

@ -5,14 +5,14 @@ jobs:
runs-on: docker
strategy:
matrix:
node: ["24"]
node: ["20"]
steps:
- name: Checkout
uses: https://code.forgejo.org/actions/checkout@v6
uses: https://code.forgejo.org/actions/checkout@v4
- name: Setup NodeJS
uses: https://code.forgejo.org/actions/setup-node@v6
uses: https://code.forgejo.org/actions/setup-node@v4
with:
node-version: ${{matrix.node}}

View file

@ -4,9 +4,10 @@
(use-package fish-mode :ensure t :defer t)
(dolist
(ending '("\\.zsh\\'" "\\.zshrc\\'" "\\.envrc\\'" "\\.zshrc\\'"))
(add-to-list 'auto-mode-alist (cons ending 'sh-mode)))
(add-to-list 'auto-mode-alist '("\\.zsh\\'" . sh-mode))
(add-to-list 'auto-mode-alist '("\\zshrc\\'" . sh-mode))
(add-to-list 'auto-mode-alist '("\\.zshrc\\'" . sh-mode))
(add-to-list 'auto-mode-alist '("\\.envrc\\'" . sh-mode))
(provide 'icejam-lang-sh)
;;; icejam-lang-sh.el ends here