making a few more css updates #41
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: Compile Assets | |
on: | |
push: | |
branches: | |
- '1.*' | |
paths: | |
- 'resources/assets/**' | |
- 'package.json' | |
jobs: | |
compile-assets: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: Install Dependencies | |
run: npm install | |
- name: Compile Assets | |
run: npm run prod | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
id: cpr | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
title: Compile Assets | |
commit-message: 'Automatic assets compilation' | |
labels: automerge |