Skip to content

Movier package CI workflow #51

Movier package CI workflow

Movier package CI workflow #51

Workflow file for this run

name: Movier package CI workflow
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 0 * * *"
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [20.18.1, 25.x]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install npm dependencies using yarn
run: yarn install
- name: Execute tests
run: yarn test