fix(deps): update dependency @nullvoxpopuli/eslint-configs to v1.5.8 #1665
This file contains hidden or 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: '@emberclear/networking' | |
| # Inspiration: | |
| # https://github.com/alexdiliberto/ember-transformicons/blob/master/.github/workflows/ci.yml | |
| on: | |
| pull_request: | |
| push: | |
| # filtering branches here prevents duplicate builds from pull_request and push | |
| branches: | |
| - master | |
| paths: | |
| - 'client/web/addons/networking/' | |
| env: | |
| CI: true | |
| root: client/web/ | |
| addon: addons/networking/ | |
| full: client/web/addons/networking/ | |
| jobs: | |
| lint: | |
| if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" | |
| name: 'Lint' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: volta-cli/action@v1 | |
| - name: Install | |
| working-directory: ${{ env.root }} | |
| run: yarn install | |
| - name: "JS/TS" | |
| working-directory: ${{ env.full }} | |
| run: yarn eslint . --ext js,ts | |
| - name: "Templates" | |
| working-directory: ${{ env.full }} | |
| run: yarn ember-template-lint . | |
| - name: 'Type Correctness' | |
| working-directory: ${{ env.full }} | |
| run: yarn tsc --build | |
| # - uses: wagoid/commitlint-github-action@v1 | |
| # env: | |
| # GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
| tests_ember_compat: | |
| if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" | |
| name: Ember Compatability | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| strategy: | |
| matrix: | |
| scenario: | |
| # - "ember-lts-3.16" | |
| - "ember-lts-3.20" | |
| # - "ember-release" | |
| # - "ember-beta" | |
| # - "ember-canary" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: volta-cli/action@v1 | |
| - name: Install | |
| run: yarn install | |
| working-directory: ${{ env.root }} | |
| - name: "Test: ${{ matrix.scenario }}" | |
| working-directory: ${{ env.full }} | |
| run: yarn test:try-one ${{ matrix.scenario }} | |