Merge pull request #9 from quinnjr/dependabot/npm_and_yarn/follow-red… #42
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: Angular-Bulma Testing Components | |
on: | |
push: { develop, bugfix/*, feature/*, release/*, hotfix/*, support/* } | |
release: | |
types: | |
- created | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- uses: pnpm/[email protected] | |
with: | |
version: 6.22.2 | |
run_install: true | |
- run: pnpm run ng run components:test -- --ci |