Skip to content

⬆️ Update dependency typescript to v5.6.3 #2204

⬆️ Update dependency typescript to v5.6.3

⬆️ Update dependency typescript to v5.6.3 #2204

Workflow file for this run

name: 'CI'
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: |
npm install
- name: Build + package + tests
run: |
npm run all
test: # make sure the action works on a clean machine without building
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
tectonic-version: 0.14.1
biber-version: 2.17
- name: Tectonic version
run: tectonic --version
- name: Biber version
run: biber --version