We add a script for running the js tests in `scripts/ci/js_tests`. This script can also be run locally. We move the `automerge-js` package to below the `automerge-wasm` crate as it is specifically testing the wasm interface. We also add an action to the github actions workflow for CI to run the js tests.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -eou pipefail
 | 
						|
 | 
						|
./scripts/ci/fmt
 | 
						|
./scripts/ci/lint
 | 
						|
./scripts/ci/build-test
 | 
						|
./scripts/ci/docs
 | 
						|
./scripts/ci/advisory
 | 
						|
./scripts/ci/js_tests
 |