71 lines
1.8 KiB
YAML
71 lines
1.8 KiB
YAML
name: "Tests"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
Test:
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
strategy:
|
|
matrix:
|
|
node_version: ['lts/*', 'node']
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- name: Install Node
|
|
uses: dcodeIO/setup-node-nvm@master
|
|
with:
|
|
node-version: ${{ matrix.node_version }}
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Run Unit Tests 👩🏽💻
|
|
run: npm run test:unit
|
|
- name: Run Spec Tests 👩🏽💻
|
|
run: npm run test:specs
|
|
|
|
Lint:
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Lint ✨
|
|
run: npm run test:lint
|
|
|
|
Release:
|
|
needs: [Test, Lint]
|
|
if: |
|
|
github.ref == 'refs/heads/master' &&
|
|
github.event.repository.fork == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Build 🗜️
|
|
run: |
|
|
npm run build
|
|
if ! git diff --quiet; then
|
|
git config --global user.email "<>"
|
|
git config --global user.name "MarkedJS bot"
|
|
git commit -am "🗜️ build [skip ci]"
|
|
fi
|
|
- name: Release 🎉
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
run: npx semantic-release
|
|
|
|
Skip:
|
|
if: contains(github.event.head_commit.message, '[skip ci]')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip CI 🚫
|
|
run: echo skip ci
|