Skip to content

can both workflows access it from the config yml? #3

can both workflows access it from the config yml?

can both workflows access it from the config yml? #3

Workflow file for this run

name: Frontend workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test JS frontend
defaults:
run:
working-directory: ./web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install requirements
run: npm install
- name: Run tests and collect coverage
run: npm run test
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4.2.0
with:
use_oidc: true