Update ember-element-helper to v0.7.1 #305
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: Lint | |
# based on: | |
# - https://github.com/NullVoxPopuli/eslint-plugin-decorator-position/blob/master/.github/workflows/lint.yml | |
# - https://github.com/NullVoxPopuli/ember-autostash-modifier/blob/master/.github/workflows/ci.yml | |
# - https://github.com/emberjs/ember-test-helpers/blob/master/.github/workflows/ci-build.yml | |
on: | |
pull_request: | |
push: | |
# filtering branches here prevents duplicate builds from pull_request and push | |
branches: | |
- master | |
env: | |
CI: true | |
jobs: | |
source: | |
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" | |
name: Source | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: volta-cli/action@v1 | |
- run: npm ci | |
- name: ESLint | |
run: npm run lint:js | |
- name: Templates | |
run: npm run lint:hbs |