Skip to content

Lockdown engine versions #1387

Lockdown engine versions

Lockdown engine versions #1387

Workflow file for this run

---
name: CI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: 0 0 * * *
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- '20'
steps:
- uses: actions/checkout@v4
- name: Set up system
run: bin/before_install
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
- name: Prepare tests
run: bin/setup
- name: Run tests
run: bin/ci
- name: Report code coverage
if: "${{ github.ref == 'refs/heads/master' && matrix.node-version == '20' }}"
continue-on-error: true
run: scripts/.coverage.sh