Skip to content

2.4.64

2.4.64 #935

Workflow file for this run

name: Build
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm install -g typescript
- run: npm install -D istanbul remap-istanbul @web-atoms/ts-to-systemjs
- run: npm install
- run: tsc
# - run: node ./node_modules/@web-atoms/ts-to-systemjs/index.js
- run: npm run test
- run: node ./node_modules/@web-atoms/ts-to-systemjs/index.js
- run: npx jex ./build.jsx
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}