Merge pull request #61 from TeriyakiBomb/master #63
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: Test and Build plugin | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: npm install | |
- name: Test | |
run: npm test | |
- name: Build | |
run: | | |
npm run build | |
npm run patch-version | |
zip -r Emmet.zip ./Emmet.novaextension | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: Nova extension | |
path: ./Emmet.zip |