mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 03:57:26 +00:00
10 lines
141 B
Bash
Executable file
10 lines
141 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
npm i --package-lock-only
|
|
npm run lint --fix
|
|
npm run build
|
|
git add src/
|
|
git add dist/
|
|
git add package-lock.json
|