Skip to content

feat(workflow): update node version to understand es imports #10

feat(workflow): update node version to understand es imports

feat(workflow): update node version to understand es imports #10

Workflow file for this run

name: GitHub publish
on:
push:
tags:
- v*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
- name: execute npm ci command
run: npm ci
- name: execute npm publish command
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}