Como usar limites de palavras no awk sem usar a função match (

Quero adicionar limites de palavras a este comando awk:

awk '{$0=tolower($0)};/wordA/&&/wordB/ { print FILENAME ":" $0; }' myfile.txt

Eu tentei adicionar\y à esquerda e à direita dewordA ewordB mas não funcionou nos meus testes.
Tentei o seguinte:/\ywordA\y/&&/\ywordB\y/

Thanks all!

(ps: sou iniciante no awk, estava tentando evitar a função match ().)

questionAnswers(6)

yourAnswerToTheQuestion