Skip to content

Testando a execução de tests #2

Testando a execução de tests

Testando a execução de tests #2

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: E2E Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Get code
uses: actions/checkout@v4.1.2
- name: Use Node.js 20
uses: actions/setup-node@v4.0.2
with:
node-version: 20
- name: Setup Python
uses: actions/setup-python@v5.0.0
with:
python-version: 3.12
- name: Test
run: node --version
python --version