chore: bump @adobe/css-tools from 4.2.0 to 4.3.2 #2800
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
name: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
- uses: pnpm/action-setup@v2.2.1 | |
with: | |
version: 8 | |
run_install: | | |
args: [--shamefully-hoist] | |
- name: Build | |
run: pnpm run build | |
- name: Test | |
run: pnpm run test | |
- name: Commit | |
env: | |
PUBLISH_GLOB: lib | |
PUBLISH_USER: github-actions | |
PUBLISH_EMAIL: actions@users.noreply.github.com | |
run: | | |
git config user.name ${PUBLISH_USER} | |
git config user.email ${PUBLISH_EMAIL} | |
git add ${PUBLISH_GLOB} -f | |
git status # useful for debugging | |
git commit -m "chore: deploy website [skip ci]" || exit 0 | |
- name: Deploy | |
if: github.ref == 'refs/heads/master' && github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' | |
uses: ad-m/github-push-action@v0.6.0 | |
with: | |
github_token: ${{ secrets.GH_TOKEN }} | |
branch: ${{ github.ref }} |