This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
chore(deps-dev): bump loader-utils from 1.4.0 to 1.4.2 #17
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: Vue Stripe Elements CI | |
on: | |
push: | |
branches: | |
- 'feat/**' | |
- 'fix/**' | |
- 'refactor/**' | |
- 'master' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache NPM | |
uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: npm i | |
- name: Lint | |
run: npm run lint | |
- name: Unit Tests | |
run: npm run test |