chore(deps): bump ora from 8.0.1 to 8.1.0 #73
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ci-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# ! un comment when finished | |
# check-workflow-files: | |
# runs-on: ubuntu-latest | |
# steps: | |
# # See: https://github.com/dorny/paths-filter | |
# # quite useful, can be used to trigger certain tests | |
# # only when certain files change. | |
# - uses: actions/checkout@v4 | |
# - uses: dorny/paths-filter@v3 | |
# id: changes | |
# with: | |
# filters: | | |
# workflow: | |
# - '.github/workflows/**' | |
# - name: Fail if workflow files are changed | |
# run: exit 1 | |
# if: steps.changes.outputs.workflow == 'true' | |
housekeeping: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
- windows-2019 | |
node: | |
- version: 18 | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: npm ci | |
- name: Test Non Online | |
run: npm run test | |