Skip to content

MEP 09/12/24

MEP 09/12/24 #875

name: Integration Tests
on:
- pull_request
jobs:
build:
name: Run Integration tests
runs-on: ubuntu-latest
steps:
# Check out the repository
- uses: actions/checkout@v3
# Install Node.js
- uses: actions/setup-node@v3
with:
node-version: 20.18.0
# Install your dependencies
- run: yarn install --frozen-lockfile --ignore-scripts
# Run tests
- run: yarn test
# Clean
- run: rm -rf env