Skip to content

Test with TypeScript 5.0 and 5.1 #96

Test with TypeScript 5.0 and 5.1

Test with TypeScript 5.0 and 5.1 #96

Workflow file for this run

# Runs various checks against any new code.
# Creates a GitHub release named nightly, for the sake of testing in external projects.
name: Check
on:
push:
branches:
- '*'
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 18
# 'registry-url' is required for 'npm publish'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run check
- run: npm run build
- run: npm run schema && git diff --exit-code tests/schema.ts
- run: npm test
- run: npm pack
- run: git tag -f nightly
- run: git push -f origin nightly
- uses: ncipollo/[email protected]
with:
artifacts: '*.tgz'
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
name: nightly
tag: nightly