This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
[package] Chapter APIを導入し、elm-emakiをより楽に記述できるようにする #13
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: ci | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: nu {0} | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: hustcer/setup-nu@v3.9 | |
with: | |
version: "0.90.1" | |
- uses: actions/checkout@v4.0.0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "npm" | |
- name: npm install | |
run: npm install | |
- name: check format with prettier | |
run: npm run format-check | |
- name: elm make on example | |
run: cd example; npx elm make src/Main.elm --output=/dev/null |