Skip to content

Bump @stripe/stripe-js from 1.54.0 to 1.54.1 #408

Bump @stripe/stripe-js from 1.54.0 to 1.54.1

Bump @stripe/stripe-js from 1.54.0 to 1.54.1 #408

Workflow file for this run

name: CI
on:
push:
branches: ["main", "staging"]
pull_request:
branches: ["main", "staging"]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run check:lint
- name: Format
run: npm run check:format
- name: Build application
run: npm run build
env:
CI: true