fix(types): add types for payment_source with order creation (#402) #1091
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: validate | |
on: | |
# run on push but only for the main branch | |
push: | |
branches: | |
- main | |
# run for every pull request | |
pull_request: {} | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: 🤝 Set Node version from .nvmrc | |
run: echo NVMRC=`cat .nvmrc` >> $GITHUB_ENV | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NVMRC }} | |
- name: 📥 Download deps | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
- name: ▶️ Run validate script | |
run: npm run validate | |
- name: 👕 Lint commit messages | |
uses: wagoid/commitlint-github-action@v5 | |
- name: ⬆️ Upload coverage report | |
uses: codecov/codecov-action@v3 |