Compare commits

..

2 commits

Author SHA1 Message Date
fda098871c
Update node versions for runner
Some checks failed
/ Test config on 24 (push) Failing after 21s
2026-04-02 08:58:12 +03:00
bf86a17a3c
Use dolist instead of multiple forms 2026-04-02 08:04:51 +03:00
2 changed files with 6 additions and 7 deletions

View file

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

View file

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