mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2025-12-12 07:40:26 -08:00
37 lines
975 B
YAML
37 lines
975 B
YAML
name: Run tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
# Allows to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Checkout branch ${{ github.head_ref }}"
|
|
uses: actions/checkout@v3
|
|
- name: "Setup node"
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
- name: "Install the rust compiler"
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
source "$HOME/.cargo/env"
|
|
- name: "Install wasm-pack"
|
|
run: |
|
|
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -y
|
|
- name: "Install dependencies"
|
|
run: |
|
|
npm install
|
|
- name: "Build Aladin Lite"
|
|
run: |
|
|
npm run build:dbg
|
|
- name: "Run the rust tests"
|
|
run: |
|
|
npm run test:build
|