Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

chore(deps-dev): bump @babel/traverse from 7.16.3 to 7.23.9 #15

chore(deps-dev): bump @babel/traverse from 7.16.3 to 7.23.9

chore(deps-dev): bump @babel/traverse from 7.16.3 to 7.23.9 #15

Workflow file for this run

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