chore(deps): update dependency css-loader to v6 #5284
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: Node.js CI | |
'on': | |
push: | |
branches: | |
- master | |
- 'renovate/**' | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
env: | |
FORCE_COLOR: 1 | |
NPM_CONFIG_COLOR: always | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Read .nvmrc | |
run: 'echo ::set-output name=NVMRC::$(cat .nvmrc)' | |
id: nvm | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
- uses: bahmutov/npm-install@v1 | |
- run: npm test | |
- name: Upload coverage data to Codecov | |
run: 'npm run coverage:report' | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: report webpack stats | |
run: npm run packtracker:publish | |
env: | |
PT_PROJECT_TOKEN: ${{ secrets.PT_PROJECT_TOKEN }} | |
PT_BRANCH: ${{ steps.extract_branch.outputs.branch }} | |
# - name: Publish Pact to Broker | |
#run: npm run pact:publish | |
#env: | |
#PACT_BROKER_USER: ${{ secrets.PACT_BROKER_USER }} | |
#PACT_BROKER_PASSWORD: ${{ secrets.PACT_BROKER_PASSWORD }} | |
#- name: Can I Deploy? | |
#run: npm run pact:can-i-deploy |