mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-26 00:26:07 +00:00
33 lines
725 B
YAML
33 lines
725 B
YAML
---
|
|
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
check_integrity:
|
|
name: Make sure expected pre-release actions are performed
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12'
|
|
- run: npm install -g npm
|
|
- run: npm install
|
|
- run: npm run build
|
|
- run: npm install -g markdownlint-cli
|
|
- run: npm run markdownlint
|
|
- run: npm run shellcheck
|
|
- run: npm run yamllint
|
|
- run: npm run jslint
|
|
- run: npm run licenses
|
|
- run: npm run format
|
|
- name: Check if build left artifacts
|
|
run: git diff --exit-code
|