2020-03-18 17:24:45 +03:00
|
|
|
|
name: Elm CI
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- master
|
|
|
|
|
pull_request:
|
|
|
|
|
branches:
|
|
|
|
|
- master
|
2022-09-15 00:38:51 +03:00
|
|
|
|
- serverless-latest
|
2022-08-21 21:23:11 +03:00
|
|
|
|
env:
|
|
|
|
|
SESSION_SECRET: hello
|
2020-03-18 17:24:45 +03:00
|
|
|
|
|
|
|
|
|
jobs:
|
2021-04-16 19:38:56 +03:00
|
|
|
|
main:
|
2020-03-18 17:24:45 +03:00
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v2
|
2022-10-14 19:45:34 +03:00
|
|
|
|
with:
|
2022-09-27 01:46:03 +03:00
|
|
|
|
submodules: recursive
|
2022-12-12 06:46:48 +03:00
|
|
|
|
- name: Use Node.js 18
|
2020-03-18 17:24:45 +03:00
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
|
with:
|
2022-12-12 06:46:48 +03:00
|
|
|
|
node-version: 18
|
2021-04-16 19:38:56 +03:00
|
|
|
|
# Re-use node_modules between runs until package-lock.json changes.
|
|
|
|
|
- name: Cache node_modules
|
|
|
|
|
id: cache-node_modules
|
|
|
|
|
uses: actions/cache@v2
|
2020-03-18 17:24:45 +03:00
|
|
|
|
with:
|
2021-08-25 20:13:19 +03:00
|
|
|
|
path: |
|
|
|
|
|
~/.cache/Cypress
|
|
|
|
|
node_modules
|
2021-08-25 20:16:37 +03:00
|
|
|
|
key: node_modules-node-v${{ matrix.node }}-${{ hashFiles('package-lock.json') }}
|
2020-03-18 17:24:45 +03:00
|
|
|
|
|
2021-04-16 19:38:56 +03:00
|
|
|
|
# Re-use ~/.elm between runs until elm.json, elm-tooling.json or
|
|
|
|
|
# review/elm.json changes. The Elm compiler saves downloaded Elm packages
|
|
|
|
|
# to ~/.elm, and elm-tooling saves downloaded tool executables there.
|
|
|
|
|
- name: Cache ~/.elm
|
|
|
|
|
uses: actions/cache@v2
|
2020-03-18 17:24:45 +03:00
|
|
|
|
with:
|
|
|
|
|
path: ~/.elm
|
2022-03-25 20:35:57 +03:00
|
|
|
|
key: elm-${{ hashFiles('elm.json', 'elm-tooling.json', 'generator/elm.json', 'review/elm.json', 'examples/routing/elm.json', 'examples/escaping/elm.json', 'examples/base-path/elm.json') }}
|
2022-10-05 00:34:04 +03:00
|
|
|
|
- name: Download lamdera
|
|
|
|
|
run: curl https://static.lamdera.com/bin/linux/lamdera-next-alpine-musl -o /usr/local/bin/lamdera && chmod a+x /usr/local/bin/lamdera
|
2020-03-18 17:24:45 +03:00
|
|
|
|
|
2021-04-16 19:38:56 +03:00
|
|
|
|
# Install npm packages, unless we restored them from cache.
|
|
|
|
|
# Since `npm ci` removes the node_modules folder before running it’s
|
|
|
|
|
# important to skip this step if cache was restored.
|
|
|
|
|
- name: npm ci
|
|
|
|
|
if: steps.cache-node_modules.outputs.cache-hit != 'true'
|
|
|
|
|
env:
|
|
|
|
|
# If you have a `"postinstall": "elm-tooling install"` script in your
|
|
|
|
|
# package.json, this turns it into a no-op. We’ll run it in the next
|
|
|
|
|
# step because of the caching. If elm-tooling.json changes but
|
|
|
|
|
# package-lock.json does not, the postinstall script needs running
|
|
|
|
|
# but this step won’t.
|
|
|
|
|
NO_ELM_TOOLING_INSTALL: 1
|
2021-08-25 20:02:24 +03:00
|
|
|
|
run: npm ci
|
2021-04-16 19:38:56 +03:00
|
|
|
|
- name: elm-tooling install
|
|
|
|
|
run: npx --no-install elm-tooling install
|
2022-06-30 20:13:22 +03:00
|
|
|
|
- name: Add elm-review, elm and elm-format to path
|
|
|
|
|
run: npm bin >> $GITHUB_PATH
|
2022-10-14 19:46:02 +03:00
|
|
|
|
- name: Build Generator
|
|
|
|
|
run: npm run build:generator
|
2021-04-16 19:38:56 +03:00
|
|
|
|
- name: Tests
|
|
|
|
|
run: npm test
|
2023-01-08 02:27:33 +03:00
|
|
|
|
- name: elm-review
|
|
|
|
|
run: npx elm-review
|
|
|
|
|
# TODO - this is giving stale errors somehow, could it be because of the DeadCodeEliminate codemods?
|
|
|
|
|
# - uses: sparksp/elm-review-action@v1
|
|
|
|
|
# env:
|
|
|
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-04-16 19:38:56 +03:00
|
|
|
|
- name: elm-format
|
|
|
|
|
run: npx --no-install elm-format --validate src/ generator/src
|
2020-03-18 17:24:45 +03:00
|
|
|
|
- name: Build elm docs
|
2021-04-16 19:38:56 +03:00
|
|
|
|
id: docs
|
2022-08-21 11:41:58 +03:00
|
|
|
|
run: lamdera make --docs docs.json
|
2022-08-21 10:42:17 +03:00
|
|
|
|
|
2021-06-05 05:28:23 +03:00
|
|
|
|
- name: Setup for cypress
|
2022-09-15 00:53:10 +03:00
|
|
|
|
run: (cd examples/end-to-end && npm install && npx elm-tooling install && rm -rf elm-stuff && npx elm-pages gen && lamdera make app/Route/Index.elm)
|
2021-06-05 04:19:34 +03:00
|
|
|
|
- name: Cypress tests
|
2022-12-12 06:48:21 +03:00
|
|
|
|
uses: cypress-io/github-action@v5
|
2021-06-05 04:19:34 +03:00
|
|
|
|
with:
|
2022-03-10 01:00:24 +03:00
|
|
|
|
start: npm start
|
2021-06-05 05:15:22 +03:00
|
|
|
|
wait-on: "http://localhost:1234"
|
|
|
|
|
wait-on-timeout: 60
|
2021-08-25 20:08:48 +03:00
|
|
|
|
|
2021-06-05 07:05:22 +03:00
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
|
if: failure()
|
|
|
|
|
with:
|
|
|
|
|
name: cypress-screenshots
|
|
|
|
|
path: cypress/screenshots
|
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
|
if: failure()
|
|
|
|
|
with:
|
|
|
|
|
name: cypress-videos
|
|
|
|
|
path: cypress/videos
|
2021-06-08 20:43:24 +03:00
|
|
|
|
- run: npx elm-tooling install
|
2021-10-17 01:31:25 +03:00
|
|
|
|
- name: Build base path example site
|
2022-03-10 01:21:58 +03:00
|
|
|
|
run: cd examples/base-path && npm install && npx elm-pages build --base elm-pages && cd ../..
|
2021-10-17 01:31:25 +03:00
|
|
|
|
- name: GitHub Pages Example Deploy
|
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
2021-10-17 01:36:03 +03:00
|
|
|
|
if: ${{ github.ref == 'refs/heads/master' }}
|
2021-10-17 01:31:25 +03:00
|
|
|
|
with:
|
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
publish_dir: ./examples/base-path/dist
|
2020-03-18 17:24:45 +03:00
|
|
|
|
- name: Elm Publish
|
2022-12-12 07:09:55 +03:00
|
|
|
|
uses: dillonkearns/elm-publish-action@c42e6b74c43830ba50fcd0b5bd1a99baf3cb350f
|
2020-03-18 17:24:45 +03:00
|
|
|
|
with:
|
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
path-to-elm: ./node_modules/.bin/elm
|
2020-03-18 17:52:23 +03:00
|
|
|
|
- id: npm-publish
|
2020-03-18 17:59:06 +03:00
|
|
|
|
if: github.ref == 'refs/heads/master'
|
2020-03-18 17:52:23 +03:00
|
|
|
|
uses: JS-DevTools/npm-publish@v1
|
|
|
|
|
with:
|
|
|
|
|
token: ${{ secrets.NPM_TOKEN }}
|
2022-10-05 00:26:24 +03:00
|
|
|
|
tag: beta
|
2022-10-07 20:00:29 +03:00
|
|
|
|
# windows-snapshots:
|
|
|
|
|
# runs-on: windows-latest
|
|
|
|
|
# steps:
|
|
|
|
|
# - uses: actions/checkout@v2
|
|
|
|
|
# - name: Download lamdera
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: mkdir bin && curl https://static.lamdera.com/bin/win/lamdera.exe -o ./bin/lamdera && chmod a+x ./bin/lamdera
|
|
|
|
|
# - name: Add Lamdera to path
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH
|
|
|
|
|
# - name: Confirm that lamdera is on path
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: lamdera --version && which lamdera
|
|
|
|
|
# - name: Use Node.js 16
|
|
|
|
|
# uses: actions/setup-node@v1
|
|
|
|
|
# with:
|
|
|
|
|
# node-version: 16
|
|
|
|
|
# # Re-use node_modules between runs until package-lock.json changes.
|
|
|
|
|
# - name: Cache node_modules
|
|
|
|
|
# id: cache-node_modules
|
|
|
|
|
# uses: actions/cache@v2
|
|
|
|
|
# with:
|
|
|
|
|
# path: |
|
|
|
|
|
# ~/.cache/Cypress
|
|
|
|
|
# node_modules
|
|
|
|
|
# key: node_modules-node-windows-v${{ matrix.node }}-${{ hashFiles('package-lock.json') }}
|
|
|
|
|
# - run: git config core.autocrlf true
|
|
|
|
|
# # Re-use ~/.elm between runs until elm.json, elm-tooling.json or
|
|
|
|
|
# # review/elm.json changes. The Elm compiler saves downloaded Elm packages
|
|
|
|
|
# # to ~/.elm, and elm-tooling saves downloaded tool executables there.
|
|
|
|
|
# - name: Cache ~/.elm
|
|
|
|
|
# uses: actions/cache@v2
|
|
|
|
|
# with:
|
|
|
|
|
# path: ~/.elm
|
|
|
|
|
# key: elm-windows-${{ hashFiles('elm.json', 'elm-tooling.json', 'generator/elm.json', 'review/elm.json') }}
|
2021-10-16 19:47:25 +03:00
|
|
|
|
|
2022-10-07 20:00:29 +03:00
|
|
|
|
# # Install npm packages, unless we restored them from cache.
|
|
|
|
|
# # Since `npm ci` removes the node_modules folder before running it’s
|
|
|
|
|
# # important to skip this step if cache was restored.
|
|
|
|
|
# - name: npm ci
|
|
|
|
|
# shell: bash
|
|
|
|
|
# if: steps.cache-node_modules.outputs.cache-hit != 'true'
|
|
|
|
|
# env:
|
|
|
|
|
# # If you have a `"postinstall": "elm-tooling install"` script in your
|
|
|
|
|
# # package.json, this turns it into a no-op. We’ll run it in the next
|
|
|
|
|
# # step because of the caching. If elm-tooling.json changes but
|
|
|
|
|
# # package-lock.json does not, the postinstall script needs running
|
|
|
|
|
# # but this step won’t.
|
|
|
|
|
# NO_ELM_TOOLING_INSTALL: 1
|
|
|
|
|
# run: npm ci
|
|
|
|
|
# - name: elm-tooling install
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: npx --no-install elm-tooling install
|
|
|
|
|
# # - name: Snapshot Tests
|
|
|
|
|
# # shell: bash
|
|
|
|
|
# # run: (cd examples/escaping && npm install && npm test) && (cd examples/base-path && npm install && npm test)
|