fix(deps): update dependencies #1255
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: | |
push: | |
# branches: | |
# - master | |
jobs: | |
Test: | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
name: ${{ matrix.os }} - Atom ${{ matrix.atom_channel }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
atom_channel: [stable, beta] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: atom-community/action-setup-atom@v1 | |
with: | |
channel: ${{ matrix.atom_channel }} | |
- name: Install dependencies and build | |
run: | | |
apm install | |
npm run build | |
- name: Run tests 👩🏾💻 | |
run: npm run test | |
- if: "!contains(github.event.head_commit.message, 'Prepare') && contains(matrix.os, 'ubuntu')" | |
name: Commit lint ✨ | |
uses: wagoid/commitlint-github-action@v2 | |
- if: "contains(matrix.os, 'ubuntu')" | |
name: Format ✨ | |
run: npm run test.format | |
- name: Lint ✨ | |
run: npm run test.lint |