Skip to content

chore(deps): update dependency lint-staged to v15.2.5 #176

chore(deps): update dependency lint-staged to v15.2.5

chore(deps): update dependency lint-staged to v15.2.5 #176

Workflow file for this run

name: Node Continuous Integration
on:
pull_request:
branches: [main, dev]
jobs:
test_pull_request:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: install ffmpeg
run: |
sudo apt-get update
sudo apt-get install ffmpeg
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm lint