chore(deps): update dependency css-loader to v6.10.0 #1084
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
############################################## | |
# FILE GENERATED AUTOMATICALLY FROM TERRAFORM | |
# THIS FILE SHOULD NOT BE EDITED BY HAND | |
############################################## | |
on: | |
push: | |
branches: | |
- master | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
env: | |
HUSKY_SKIP_HOOKS: 1 | |
HUSKY: 0 | |
steps: | |
- uses: actions/[email protected] | |
- name: Get package name | |
id: name | |
uses: notiz-dev/github-action-json-property@release | |
with: | |
path: 'package.json' | |
prop_path: 'name' | |
- uses: GoogleCloudPlatform/[email protected] | |
id: release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
release-type: node | |
package-name: ${{steps.name.outputs.prop}} | |
- uses: actions/[email protected] | |
if: ${{ steps.release.outputs.release_created }} | |
- uses: actions/[email protected] | |
with: | |
node-version: 16 | |
registry-url: 'https://registry.npmjs.org' | |
if: ${{ steps.release.outputs.release_created }} | |
- run: npm ci | |
if: ${{ steps.release.outputs.release_created }} | |
- run: npm run build:lib | |
if: ${{ steps.release.outputs.release_created }} | |
- run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
if: ${{ steps.release.outputs.release_created }} |