chore(deps): update dependency postcss to v8.4.31 [security] #637
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: Push | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Cache packages when the branch is not update-dependencies or renovate-* | |
- name: Resolve caching | |
id: cache | |
if: ${{ github.ref_name != 'update-dependencies' && !startsWith(github.ref_name, 'renovate-') }} | |
run: echo "package=npm" >> $GITHUB_OUTPUT | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: ${{ steps.cache.outputs.package }} | |
- run: npm ci | |
- run: npm run build --if-present | |
- name: Send stats to relative-ci.com | |
run: npx relative-ci-agent | |
env: | |
RELATIVE_CI_KEY: ${{ secrets.RELATIVE_CI_KEY }} | |
DEBUG: ${{ secrets.DEBUG }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifacts | |
path: artifacts |