fix(HII-9985): remove old terminology stuff #64
Workflow file for this run
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: commit | |
on: | |
- push | |
jobs: | |
lint-yaml: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Pip install | |
run: sudo -H pip install yamllint pykwalify==1.7.0 | |
- name: YAML lint | |
run: yamllint Extenda/styles | |
test: | |
runs-on: ubuntu-latest | |
needs: | |
- lint-yaml | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: npm install | |
- name: ES lint | |
run: npm run lint | |
- name: Test style | |
run: npm run test | |
style: | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
needs: | |
- lint-yaml | |
- test | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Zip Extenda Vale Style | |
run: | | |
zip -r Extenda.zip Extenda/ -x styles/Google/\* | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
title: "Extenda" | |
automatic_release_tag: "latest" | |
prerelease: false | |
files: | | |
Extenda.zip |