Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update inputmask to version 5.0.10-beta.11 #98

Merged
merged 9 commits into from
Nov 22, 2024
4 changes: 2 additions & 2 deletions .github/workflows/CR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: "npm"
node-version: 20
Expand Down
20 changes: 7 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
name: CI

on:
pull_request_target:
branches:
- main
- beta
types:
- synchronize
- edited
- opened
pull_request:
branches: [main,beta]
types: [synchronize,edited,opened]

permissions:
pull-requests: write
Expand All @@ -29,21 +24,20 @@ jobs:
needs: semantic_pr
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
node: [16, 18, 20]
node-version: [16, 18, 20, 22]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: "npm"
node-version: ${{ matrix.node }}
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm ci
Expand Down
Loading
Loading