publishing version 2.0.6 #130
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
# .github/workflows/release.yml | |
name: Build Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- dev | |
- main | |
env: | |
NODE_VERSION: 18 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: check theme version against tag | |
run: | | |
THEME_VERSION=$(cat sass/style.scss | grep Version | sed -r 's/version: +//I') | |
V="v" | |
echo Version in style.scss: $THEME_VERSION | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install npm packages | |
run: npm ci | |
- name: Lint SCSS | |
run: npm run lint:scss | |
- name: Build CSS | |
run: npm run compile:css | |
- name: Build CSS-RTL | |
run: npm run compile:rtl | |
- name: Lint JS | |
run: npm run lint:js | |
- name: Build JS | |
run: npm run build | |
- name: run install composer | |
run: composer install | |
- name: Make bundle | |
run: npm run bundle |