Merge pull request #256 from jslawler/fix-adguard #2461
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: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
schedule: | |
- cron: "0 0 */7 * *" # Every week | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Lint | |
run: | | |
yarn install | |
yarn lint | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Run conversion | |
run: | | |
yarn install | |
yarn convert | |
- name: Deploy | |
if: github.ref == 'refs/heads/main' && github.repository == 'AdguardTeam/companiesdb' | |
run: | | |
git config --global user.name 'GH action' | |
git config --global user.email '[email protected]' | |
git add dist/* | |
git commit -m "Auto-update" | |
git push |