elm-pages-v3-beta/.github/workflows/ci.yml

93 lines
3.1 KiB
YAML
Raw Normal View History

2020-03-18 17:24:45 +03:00
name: Elm CI
on:
push:
branches:
- master
pull_request:
branches:
- master
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
2021-04-16 19:38:56 +03:00
- name: Use Node.js 15
2020-03-18 17:24:45 +03:00
uses: actions/setup-node@v1
with:
2021-04-16 19:38:56 +03:00
node-version: 15
# 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-04-16 19:38:56 +03:00
path: node_modules
key: node_modules-${{ 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
2021-04-16 19:38:56 +03:00
key: elm-${{ hashFiles('elm.json', 'elm-tooling.json', 'generator/elm.json', 'review/elm.json') }}
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 its
# 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. Well 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 wont.
NO_ELM_TOOLING_INSTALL: 1
run: npm ci
- name: elm-tooling install
run: npx --no-install elm-tooling install
- name: Tests
run: npm test
2021-06-04 04:55:59 +03:00
- name: Add elm-review, elm and elm-format to path
run: npm bin >> $GITHUB_PATH
- 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
run: npx --no-install elm make --docs docs.json
2021-06-05 05:28:23 +03:00
- name: Setup for cypress
run: (cd examples/docs && npm install && npx elm-tooling install)
2021-06-05 04:19:34 +03:00
- name: Cypress tests
uses: cypress-io/github-action@v2
with:
2021-06-05 05:28:23 +03:00
start: npm start
wait-on: "http://localhost:1234"
wait-on-timeout: 60
- 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
- run: npx elm-tooling install
2020-03-18 17:24:45 +03:00
- name: Elm Publish
2021-04-16 19:38:56 +03:00
uses: dillonkearns/elm-publish-action@v1
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
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 }}