mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
11 lines
278 B
Bash
11 lines
278 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -u
|
||
|
|
||
|
export UPDATE=1
|
||
|
export DIFF=0
|
||
|
|
||
|
cargo test -p swc -p swc_ecma_codegen -p swc_ecma_parser -p swc_bundler -p swc_node_bundler --no-fail-fast
|
||
|
|
||
|
git add -A
|
||
|
git commit -m 'Update test refs'
|
||
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)" --no-verify
|