Skip to content

Bump typescript from 5.6.3 to 5.7.2 #105

Bump typescript from 5.6.3 to 5.7.2

Bump typescript from 5.6.3 to 5.7.2 #105

Workflow file for this run

name: deploy
on: [push]
jobs:
test:
name: converter test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- name: Execute test
run: npm run ci
- name: Publish coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
deploynpm:
name: deploy npm
runs-on: ubuntu-20.04
needs: test
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Publish
run: |
npm ci
npm run build
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}