chore (npm): bump lint-staged from 13.2.3 to 13.3.0 #1074
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: Tests | |
on: | |
- workflow_dispatch | |
- push | |
- pull_request | |
jobs: | |
ci: | |
if: ${{ !contains(github.event.head_commit.message, 'skip ci') }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [16, 18, 20] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: cache node_modules | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build playground | |
run: yarn build:playground | |
- name: Lint | |
run: yarn lint | |
- name: Check types | |
run: yarn types | |
- name: Run tests | |
run: yarn test | |
- name: Upload coverage to Codecov | |
if: github.actor != 'dependabot[bot]' | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage/lcov.info | |
- name: Automatically merge dependabot updates | |
if: github.event_name == 'pull_request' | |
uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
target: minor | |
github-token: ${{ secrets.DEPENDABOT_AUTOMERGE }} |