Skip to content

chore(deps): update devdependencies #1009

chore(deps): update devdependencies

chore(deps): update devdependencies #1009

Workflow file for this run

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