Skip to content

Merge playwright tests to Develop #286

Merge playwright tests to Develop

Merge playwright tests to Develop #286

Workflow file for this run

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 Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rust-src
- name: Install wasm-pack
run: cargo install wasm-pack --version ~0.12
- name: "Install dependencies"
run: npm install
- name: "Build Aladin Lite"
run: npm build
- name: "Run some tests"
run: npm test:build