Skip to content

Commit

Permalink
fix: update inputmask to version 5.0.10-beta.11 (eduardoborges#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoborges authored Nov 22, 2024
1 parent 6a4fc39 commit 08a16a5
Show file tree
Hide file tree
Showing 7 changed files with 4,521 additions and 3,674 deletions.
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

0 comments on commit 08a16a5

Please sign in to comment.