Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Bump json5 from 2.2.0 to 2.2.3 #42

Bump json5 from 2.2.0 to 2.2.3

Bump json5 from 2.2.0 to 2.2.3 #42

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]
steps:
- uses: actions/checkout@v2
- uses: UziTech/action-setup-atom@v1
with:
channel: ${{ matrix.atom_channel }}
- uses: actions/setup-node@v2
with:
node-version: "12.x"
- name: Install dependencies
run: |
apm install --production
npm install --only=dev
Lint:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
name: ${{ matrix.os }} - Lint
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "12.x"
- name: Install dependencies
run: npm install
- name: Run tests 👩🏾‍💻
run: npm run test.lint