Update dependency inquirer to v13 #784
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: ['master'] | |
| # early issue detection: run CI weekly on Sundays | |
| schedule: | |
| - cron: "0 6 * * 0" | |
| jobs: | |
| Test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [14.x, 16.x, 17.x] | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4 | |
| - name: Install Node | |
| uses: volta-cli/action@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Browser Tests | |
| run: yarn test |