Skip to content

fix(ncc): bump ncc to supported node version #25

fix(ncc): bump ncc to supported node version

fix(ncc): bump ncc to supported node version #25

Workflow file for this run

on: push
jobs:
use_s3cmd:
runs-on: ubuntu-latest
name: Validate Project
steps:
- uses: actions/checkout@v2
- run: |
npm i
mv dist/index.js old
npm run build
if cmp --silent -- old dist/index.js; then
exit 0
else
exit 1
fi