Ejemplo de Pipelinejobs:
build:
runs-on: ubuntu-latest
steps: - name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm install
- name: Run configuration tests
run: npm run config-test
- name: Run component tests
run: npm run component-test
- name: Run component integration tests
run: npm run component-integration-test