| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- name: CI
- on: [push, pull_request, release]
- jobs:
- linting:
- name: Linting
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js 8
- uses: actions/setup-node@v1
- with:
- node-version: 8
- - name: npm install
- run: npm install
- - name: Run linting
- run: grunt compile lint
- tests:
- name: Tests
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js 8
- uses: actions/setup-node@v1
- with:
- node-version: 8
- - name: npm install
- run: npm install
- - name: Run tests
- run: grunt compile test
- minification:
- name: Minification
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js 8
- uses: actions/setup-node@v1
- with:
- node-version: 8
- - name: npm install
- run: npm install
- - name: Run minification
- run: grunt compile minify
- deploy_github:
- name: Deploy to GitHub Package Registry
- needs: [linting, tests, minification]
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js 8
- uses: actions/setup-node@v1
- with:
- node-version: 8
- registry-url: https://npm.pkg.github.com/
- scope: '@select2'
- - name: npm install
- run: npm install
- - name: Run linting, tests, minify
- run: grunt
- - name: Deploy
- if: github.event_name == 'push'
- run: npm publish
- env:
- NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- deploy_npm:
- name: Deploy to NPM
- needs: [linting, tests, minification]
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js 8
- uses: actions/setup-node@v1
- with:
- node-version: 8
- registry-url: https://npm.pkg.github.com/
- scope: '@select2'
- - name: npm install
- run: npm install
- - name: Run linting, tests, minify
- run: grunt
- - name: Deploy
- if: github.event_name == 'release'
- run: npm publish
- env:
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|