Update dependency @types/intl-tel-input to v18.1.3 #2828
Workflow file for this run
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: Lint | |
env: | |
FORCE_COLOR: 1 | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: wyvox/action-setup-pnpm@v3 | |
with: | |
pnpm-version: 8.5.1 | |
node-version: 16.x | |
args: "--frozen-lockfile" | |
- name: Run Lint | |
run: pnpm lint | |
typescript-compatibility: | |
name: Type checking - ${{ matrix.typescript-scenario }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
typescript-scenario: | |
- [email protected] | |
- [email protected] | |
- typescript@next | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: wyvox/action-setup-pnpm@v3 | |
with: | |
node-version: 16.x | |
args: "--frozen-lockfile" | |
- name: Update TS version | |
run: pnpm add -D ${{ matrix.typescript-scenario }} | |
working-directory: ember-phone-input | |
- name: Type checking | |
run: pnpm lint:types | |
working-directory: ember-phone-input |